FLASH-X
Doxygen Generated Documentation From Interface Source Code
IO_output.F90
Go to the documentation of this file.
1!! NOTICE
2!! Copyright 2022 UChicago Argonne, LLC and contributors
3!!
4!! Licensed under the Apache License, Version 2.0 (the "License");
5!! you may not use this file except in compliance with the License.
6!!
7!! Unless required by applicable law or agreed to in writing, software
8!! distributed under the License is distributed on an "AS IS" BASIS,
9!! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10!! See the License for the specific language governing permissions and
11!! limitations under the License.
12!!
105
106!! Variables that start with "io_", like io_checkpointFileNumber and
107!! io_checkpointFileIntervalTime are located in the IO_data fortran
108!! module. The "io_" is meant to indicated that this variable has IO
109!! Unit scope. Variable without the "io_" in front are local
110!! variables to this subroutine
111
112
113subroutine IO_output(simTime, dt, nstep, nbegin, endRun, outputType)
114
116
117 implicit none
118
119 real, intent(in) :: simTime, dt
120 integer, intent(in) :: nstep, nbegin
121 logical, intent(out) :: endRun
122 integer, intent(in), optional :: outputType
123
124 call IO_writeIntegralQuantities( 0, simTime)
125
126 endRun = .FALSE.
127
128end subroutine IO_output
subroutine IO_output(simTime, dt, nstep, nbegin, endRun, outputType)
Definition: IO_output.F90:114