Detailed information about output
Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
logical, | public | :: | active | = | .false. |
is this output object active? |
|
logical, | public | :: | vtk_bin | = | .true. |
is the output format vtk binary? MH: This is not very well defined here. |
|
logical, | public | :: | vertex | = | .false. |
logical for cell based vtk out or not |
|
character(len=40), | public | :: | filename |
output file name |
|||
character(len=256), | public | :: | folder |
output folder name |
|||
type(tem_timeControl_type), | public | :: | timeControl |
stores time control parameters |
|||
character(len=40), | public | :: | fileformat |
fileformat |
|||
logical, | public | :: | shearstress | = | .false. |
additional quantity to dump |
|
logical, | public | :: | wss | = | .false. | ||
logical, | public | :: | dumpHalos | = | .false. |
also write out the halo elements |
|
logical, | public | :: | dumpGhosts | = | .false. |
also write out the ghost elements |
|
logical, | public | :: | format_ascii | = | .false. |
write out in ascii format |
type tem_output_type !> is this output object active? logical :: active = .false. !> is the output format vtk binary? MH: This is not very well defined here. logical :: vtk_bin = .true. !> logical for cell based vtk out or not logical :: vertex = .false. !> output file name character(len=40) :: filename !> output folder name character(len=256) :: folder !> stores time control parameters type(tem_timeControl_type) :: timeControl !> fileformat character(len=40) :: fileformat !> additional quantity to dump logical :: shearstress = .false. !> logical :: wss = .false. ! Debug element output !> also write out the halo elements logical :: dumpHalos = .false. !> also write out the ghost elements logical :: dumpGhosts = .false. !> write out in ascii format logical :: format_ascii = .false. end type tem_output_type