Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
integer, | private | :: | flag | ||||
integer, | private | :: | master | ||||
integer, | private | :: | nv | ||||
integer, | private | :: | slave |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(face), | intent(inout) | :: | f | |||
integer, | intent(in), | optional | :: | nv | ||
integer, | intent(in), | optional | :: | master | ||
integer, | intent(in), | optional | :: | slave | ||
integer, | intent(in), | optional | :: | flag |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(face), | intent(in) | :: | f |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(face), | intent(in) | :: | f |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(face), | intent(in) | :: | f |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(face), | intent(in) | :: | f |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(face), | intent(in) | :: | fc |
TYPE face
PRIVATE
INTEGER :: nv
INTEGER :: master
INTEGER :: slave
INTEGER :: flag
CONTAINS
PROCEDURE, PRIVATE :: get_face_nv, get_face_master, get_face_slave, get_face_flag ! Getters
GENERIC, PUBLIC :: nv_ => get_face_nv
GENERIC, PUBLIC :: master_ => get_face_master
GENERIC, PUBLIC :: slave_ => get_face_slave
GENERIC, PUBLIC :: flag_ => get_face_flag
PROCEDURE :: set_face ! Setters
PROCEDURE, PRIVATE :: nemo_face_sizeof
GENERIC, PUBLIC :: nemo_sizeof => nemo_face_sizeof
END TYPE face