Appearance
adam_nasto_bc_object
ADAM, NASTO Boundary Conditions class definition, CPU backend.
Source: src/app/nasto/common/adam_nasto_bc_object.F90
Dependencies
Contents
Variables
| Name | Type | Attributes | Description |
|---|---|---|---|
INI_SECTION_NAMES | character(len=8) | parameter | INI (config) file section name containing BC configs. |
BC_EXTRAPOLATION | integer(kind=I4P) | parameter | Extrapolation. |
BC_INFLOW | integer(kind=I4P) | parameter | Supersonic inflow. |
BC_WALL_INVISCID | integer(kind=I4P) | parameter | Inviscid wall. |
Derived Types
nasto_bc_object
Boundary Conditions class definition, CPU backend.
Components
| Name | Type | Attributes | Description |
|---|---|---|---|
mpih | type(mpih_object) | MPI handler. | |
bc_type | integer(kind=I4P) | Boundary condition type. | |
q | real(kind=R8P) | allocatable | Primitive variables (r,u,v,w,p,s with s being the specie index) at BC. |
Type-Bound Procedures
| Name | Attributes | Description |
|---|---|---|
initialize | pass(self) | Initialize BC. |
load_from_file | pass(self) | Load config from file. |
Subroutines
initialize
Initialize the equation.
fortran
subroutine initialize(self, file_parameters)Arguments
| Name | Type | Intent | Attributes | Description |
|---|---|---|---|---|
self | class(nasto_bc_object) | inout | BC. | |
file_parameters | type(file_ini) | in | Simulation parameters ini file handler. |
Call graph
load_from_file
Load config from file.
fortran
subroutine load_from_file(self, file_parameters, go_on_fail)Arguments
| Name | Type | Intent | Attributes | Description |
|---|---|---|---|---|
self | class(nasto_bc_object) | inout | BC. | |
file_parameters | type(file_ini) | in | Simulation parameters ini file handler. | |
go_on_fail | logical | in | optional | Go on if load fails. |
Call graph