int FEM_Mesh_is_get(int mesh)
INTEGER FUNCTION :: FEM_Mesh_is_get(mesh)
INTEGER, INTENT(IN) :: mesh
Return true if this mesh is in getting mode. A getting mesh returns values to FEM_Mesh_data.
int FEM_Mesh_is_set(int mesh)
INTEGER FUNCTION :: FEM_Mesh_is_set(mesh)
INTEGER, INTENT(IN) :: mesh
Return true if this mesh is in setting mode. A setting mesh extracts values from FEM_Mesh_data.
void FEM_Mesh_become_get(int mesh)
SUBROUTINE :: FEM_Mesh_become_get(mesh)
INTEGER, INTENT(IN) :: mesh
Put this mesh in getting mode, so you can read back its values.
void FEM_Mesh_become_set(int mesh)
SUBROUTINE :: FEM_Mesh_become_set(mesh)
INTEGER, INTENT(IN) :: mesh
Put this mesh in setting mode, so you can set its values.
void FEM_Mesh_print(int mesh);
SUBROUTINE FEM_Mesh_print(mesh)
INTEGER, INTENT(IN) :: mesh
Print out a text description of the nodes and elements of this mesh.
January 17, 2008
FEM Homepage
Charm Homepage