Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
character(len=:), | private, | allocatable | :: | dir_output | |||
character(len=:), | private, | allocatable | :: | dir_output_field | |||
logical, | private | :: | is_hydraulic | ||||
logical, | private | :: | is_thermal | ||||
character(len=:), | private, | allocatable | :: | log_file_name | |||
type(type_output_observation), | private, | allocatable | :: | observations(:) | |||
type(type_output_overall), | private | :: | overall |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(type_output), | intent(inout) | :: | self | |||
type(type_input), | intent(in) | :: | input | |||
class(type_domain), | intent(inout), | optional | :: | domain | ||
type(type_dp_3d), | intent(inout), | pointer | :: | coordinate |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(type_output), | intent(inout) | :: | self | |||
type(type_domain), | intent(in) | :: | domain |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(type_output), | intent(inout) | :: | self | |||
integer(kind=int32), | intent(in) | :: | file_counts | |||
type(type_domain), | intent(in) | :: | domain | |||
real(kind=real64), | intent(in), | optional | :: | porosity(:) | ||
real(kind=real64), | intent(in), | optional | :: | temperature(:) | ||
real(kind=real64), | intent(in), | optional | :: | si(:) | ||
real(kind=real64), | intent(in), | optional | :: | pressure(:) | ||
type(type_dp_3d), | intent(in), | optional | :: | water_flux |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(type_output) | :: | self | ||||
real(kind=real64), | intent(in) | :: | time | |||
type(type_domain), | intent(inout), | optional | :: | domain | ||
type(type_proereties_manager), | intent(inout), | optional | :: | propeties | ||
real(kind=real64), | intent(in), | optional | :: | porosity(:) | ||
real(kind=real64), | intent(in), | optional | :: | temperature(:) | ||
real(kind=real64), | intent(in), | optional | :: | pressure(:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(type_output), | intent(inout) | :: | self | |||
type(type_time), | intent(in) | :: | time | |||
type(type_crs), | intent(in) | :: | Matrix | |||
type(type_domain), | intent(inout) | :: | domain |
type :: type_output private character(:), allocatable :: dir_output character(:), allocatable :: dir_output_field character(:), allocatable :: log_file_name logical :: is_thermal logical :: is_hydraulic type(type_output_observation), allocatable :: observations(:) type(type_output_overall) :: overall contains procedure, pass(self), public :: initialize => initialize_type_output procedure, pass(self), public :: output_fields procedure, pass(self), public :: output_coloring procedure, pass(self), public :: output_history procedure, pass(self), public :: output_system_log end type type_output