Difference between revisions of "Diagfi.nc"

From Planets
Jump to: navigation, search
(Created page with "Whether you use the Mars, Generic or Pluto PCM, you will use the routine <syntaxhighlight lang="fortran"> call write_output("temperature","temperature","K",zt) <...")
 
 
(One intermediate revision by the same user not shown)
Line 6: Line 6:
  
 
to write down variables to either [[XIOS]] or a '''diagfi.nc''' file.
 
to write down variables to either [[XIOS]] or a '''diagfi.nc''' file.
 +
 +
The other models will rely on the routine:
 +
<syntaxhighlight lang="fortran">
 +
    call writediagfi(ngrid,"temperature","temperature","K",3,zt)
 +
</syntaxhighlight>
 +
 +
  
 
Here, we describe the way to control the output in the diagfi.nc file.
 
Here, we describe the way to control the output in the diagfi.nc file.
  
 
You select the variables written in '''diagfi.nc''' using the [[diagfi.def]] configuration file.
 
You select the variables written in '''diagfi.nc''' using the [[diagfi.def]] configuration file.
 +
 +
See [[outputs]] for more information.

Latest revision as of 13:14, 5 March 2025

Whether you use the Mars, Generic or Pluto PCM, you will use the routine

call write_output("temperature","temperature","K",zt)

to write down variables to either XIOS or a diagfi.nc file.

The other models will rely on the routine:

     call writediagfi(ngrid,"temperature","temperature","K",3,zt)


Here, we describe the way to control the output in the diagfi.nc file.

You select the variables written in diagfi.nc using the diagfi.def configuration file.

See outputs for more information.