Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Gyacomo
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Antoine Cyril David Hoffmann
Gyacomo
Commits
fab38cbc
Commit
fab38cbc
authored
1 year ago
by
Antoine Cyril David Hoffmann
Browse files
Options
Downloads
Patches
Plain Diff
add default values in writing flags
parent
26e77140
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/diagnostics_mod.F90
+10
-5
10 additions, 5 deletions
src/diagnostics_mod.F90
with
10 additions
and
5 deletions
src/diagnostics_mod.F90
+
10
−
5
View file @
fab38cbc
...
...
@@ -5,11 +5,16 @@ MODULE diagnostics
IMPLICIT
NONE
PRIVATE
LOGICAL
,
PUBLIC
,
PROTECTED
::
write_doubleprecision
=
.FALSE.
LOGICAL
,
PUBLIC
,
PROTECTED
::
write_gamma
,
write_hf
! output particle transport and heat flux
LOGICAL
,
PUBLIC
,
PROTECTED
::
write_phi
,
write_Na00
LOGICAL
,
PUBLIC
,
PROTECTED
::
write_Napj
,
write_Sapj
LOGICAL
,
PUBLIC
,
PROTECTED
::
write_dens
,
write_fvel
,
write_temp
LOGICAL
,
PUBLIC
,
PROTECTED
::
write_doubleprecision
=
.TRUE.
LOGICAL
,
PUBLIC
,
PROTECTED
::
write_gamma
=
.TRUE.
! output particle transport and heat flux
LOGICAL
,
PUBLIC
,
PROTECTED
::
write_hf
=
.TRUE.
! output particle transport and heat flux
LOGICAL
,
PUBLIC
,
PROTECTED
::
write_phi
=
.TRUE.
LOGICAL
,
PUBLIC
,
PROTECTED
::
write_Na00
=
.TRUE.
LOGICAL
,
PUBLIC
,
PROTECTED
::
write_Napj
=
.TRUE.
LOGICAL
,
PUBLIC
,
PROTECTED
::
write_Sapj
=
.TRUE.
LOGICAL
,
PUBLIC
,
PROTECTED
::
write_dens
=
.TRUE.
LOGICAL
,
PUBLIC
,
PROTECTED
::
write_fvel
=
.TRUE.
LOGICAL
,
PUBLIC
,
PROTECTED
::
write_temp
=
.TRUE.
INTEGER
,
PUBLIC
,
PROTECTED
::
nsave_0d
,
nsave_1d
,
nsave_2d
,
nsave_3d
,
nsave_5d
! save data every n step
REAL
,
PUBLIC
,
PROTECTED
::
dtsave_0d
,
dtsave_1d
,
dtsave_2d
,
dtsave_3d
,
dtsave_5d
! save data every dt time unit
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment