Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
type(geo_t), | public, | allocatable | :: | geo | |||
class(grid_t), | public, | allocatable | :: | grid | |||
class(par_t), | public, | allocatable | :: | par |
Completely initialise the mesh object. Upon initialisation the mesh object can be read-only and shouldn't be edited Takes as argument global information about the mesh like its length, number of cells and decomposition in each direction
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(in), | dimension(3) | :: | dims_global | ||
integer, | intent(in), | dimension(3) | :: | nproc_dir | ||
real(kind=dp), | intent(in), | dimension(3) | :: | L_global | ||
character(len=*), | intent(in), | dimension(2) | :: | BC_x | ||
character(len=*), | intent(in), | dimension(2) | :: | BC_y | ||
character(len=*), | intent(in), | dimension(2) | :: | BC_z | ||
character(len=*), | intent(in), | optional, | dimension(3) | :: | stretching | |
real(kind=dp), | intent(in), | optional, | dimension(3) | :: | beta | |
logical, | intent(in), | optional | :: | use_2decomp |
Getter for local domain dimensions
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(mesh_t), | intent(in) | :: | self | |||
integer, | intent(in) | :: | data_loc |
Getter for the main dimension a field oriented along dir
with data on data_loc
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(mesh_t), | intent(in) | :: | self | |||
integer, | intent(in) | :: | dir | |||
integer, | intent(in) | :: | data_loc |
Getter for the main dimension a field oriented along dir
with data on data_loc
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(mesh_t), | intent(in) | :: | self | |||
integer, | intent(in) | :: | dir | |||
integer, | intent(in) | :: | data_loc |
Getter for the main dimension of field phi
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(mesh_t), | intent(in) | :: | self | |||
class(field_t), | intent(in) | :: | phi |
Get the coordinates of a vertex with i, j, k local cartesian indices Avoid calling this in hot loops
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(mesh_t), | intent(in) | :: | self | |||
integer, | intent(in) | :: | i | |||
integer, | intent(in) | :: | j | |||
integer, | intent(in) | :: | k | |||
integer, | intent(in), | optional | :: | data_loc_op |