AddFluidMaterial
- This routine adds Fluid material to the AbstractSTDBE_.
- This routine prepares
obj%FluidMaterialToMesh(materialNo)
andobj%fluidMaterial(materialNo)
. param
contains the parameters for constructing a FluidMaterialmaterialName
is the name of material, it should befluidMaterial
.region
is an instance of MeshSelection_.
materialNo
should be lesser than or equal to the total number of Fluid materials.
INTERFACE
MODULE SUBROUTINE STDBE_AddFluidMaterial(obj, materialNo, materialName, &
& param, region)
CLASS(AbstractSTDBE_), INTENT(INOUT) :: obj
INTEGER(I4B), INTENT(IN) :: materialNo
CHARACTER(LEN=*), OPTIONAL, INTENT(IN) :: materialName
TYPE(ParameterList_), OPTIONAL, INTENT(IN) :: param
TYPE(MeshSelection_), OPTIONAL, INTENT(IN) :: region
END SUBROUTINE STDBE_AddFluidMaterial
END INTERFACE