Galerkin FEM for elliptic PDEs
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
12345678 |
- #!/usr/bin/env bash
- gmsh -3 -format vtk -o sphere.vtk sphere.geo
- gmsh -2 -format stl -o sphereBox.stl sphereBox.geo
- ../ResampleWithDataset sphere.vtk sphereBox.stl MergedSphere.vtu
- ../VTKGsphere MergedSphere.vtu 4.25 gravity sphereGrav.vtu
- ../FEM4EllipticPDE_bhmag sphereGrav.vtu sphereGrav.vtu sphereOutGrav.vtu
-
- #paraview --data=sphereOutGrav.vtu
|