Mask arrays based on static_data set
Writes mask_data to NetCDF file
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(mask_data_t), | intent(in) | :: | self |
Instance of class |
||
| integer, | intent(in) | :: | fgid |
File or group id |
Reads mask_data from NetCDF file
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(mask_data_t), | intent(inout) | :: | self |
Instance of class |
||
| integer, | intent(in) | :: | fgid |
File or group id |
Mask arrays
| Type | Visibility | Attributes | Name | Initial | |||
|---|---|---|---|---|---|---|---|
| logical, | public, | dimension(:), allocatable | :: | is_inner |
True, if point is an inner computational point |
||
| logical, | public, | dimension(:), allocatable | :: | is_boundary |
True, if point is a (perpendicular) boundary point |
||
| logical, | public, | dimension(:), allocatable | :: | is_ghost |
True, if point is a (perpendicular) ghost point |
||
| logical, | public, | dimension(:), allocatable | :: | is_in_vessel |
True if point is inside vessel |
||
| logical, | public, | dimension(:), allocatable | :: | is_parbnd_immersed |
True if point is in region of finite immersion |
| final :: destructor_mask_data_t |
| procedure , public :: build => build_mask_data Subroutine | |
| procedure , public :: write_netcdf => write_netcdf_mask_data Interface | |
| procedure , public :: read_netcdf => read_netcdf_mask_data Interface |
Builds mask arrays
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(mask_data_t), | intent(inout) | :: | self |
Instance of type |
||
| class(equilibrium_t), | intent(in) | :: | equi |
Equilibrium |
||
| type(mesh_cart_t), | intent(in) | :: | mesh |
Mesh |
||
| type(penalisation_t), | intent(in), | optional | :: | parbnd_immersed |
Parallel immersion |
|
| real(kind=GP), | intent(in), | optional | :: | threshold_immersed |
Threshold above which point is considered an immersed point Default: GP_EPS |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(mask_data_t), | intent(inout) | :: | self |