Changes between Version 33 and Version 34 of doc/app/ncl


Ignore:
Timestamp:
Nov 23, 2018 9:43:16 AM (7 years ago)
Author:
scharf
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • doc/app/ncl

    v33 v34  
    1 = Postprocessing with NCL - Usage of PALM NCL scripts =
     1= Postprocessing with NCL script Palmplot=
    22[[TracNav(doc/app/datatoc|nocollapse)]]
     3
    34== General ==
    45The standard output format of data in PALM is [[../netcdf|netCDF]]. PALM produces output of 3D volume data, 2D cross sections, profiles, timeseries and spectra. All these kinds of output can be plotted with the ''NCAR Command Language'' [[http://www.ncl.ucar.edu/|NCL]] which is an interpreted language designed specifically for scientific data analysis and visualization.\\\\
     
    7071If one of the scripts aborts and there is no comment, check your personal configuration file {{{.ncl.config}}} - the scripts should not abort with the default values. Be sure to use the right NCL data type (e.g.: integer = 2; float = 2.0; double = 2.0d; string = “name” ).
    7172
    72 == User-defined NCL Routines ==
    73 In future we will collect useful NCL routines that have been developed by the PALM group and that users might use in their own NCL scripts. You can find these routines [./database here].
     73\\\\
     74
     75= List of parameters for Palmplot =
     76[[TracNav(doc/app/datatoc|nocollapse)]]
     77
     78The following lists give an overview of all existing parameters to steer `palmplot`, the PALM NCL scripts. Further descriptions can be found in the configuration file [[source:palm/trunk/SCRIPTS/NCL/.ncl.config.default|.ncl.config.default]].\\
     79Most parameters are allocated with a suitable default value in the configuration file but some need to be changed before running any script. These variables are [[#file_1|file_1]] and if available [[#file_2_pr|file_2]], ..., up to [[#file_6_pr|file_6]]. In case of a job chain without extended output files, the scripts will automatically read all necessary files after indicating the first and the last cyclic number (see [[#start_f|start_f]] and [[#end_f|end_f]]).\\\\
     80
     81The parameters are arranged in five different lists:
     82* Parameters which are [#Commonparameters common for all four scripts]
     83* Parameters for plotting [#Parametersforplottingcrosssections cross sections]
     84* Parameters for plotting [#Parametersforplottingprofiles profiles]
     85* Parameters for plotting [#Parametersforplottingspectra spectra]
     86* Parameters for plotting [#Parametersforplottingtimeseries timeseries]
     87
     88The following abbreviations for the NCL types are used in the lists: [=#NCL_types ]
     89||=Abbr.  =||=Explanation  =||=Example =||
     90||D  ||double   ||2.0d    ||
     91||F  ||float    ||2.0     ||
     92||I  ||integer  ||2       ||
     93||S  ||string   ||"name"  ||
     94
     95The following abbreviations for the NCL scripts are used in the lists:
     96||=Abbr.  =||=Explanation  =||
     97||CS  ||cross sections  ||   
     98||PR  ||profiles  ||
     99||SP  ||spectra  ||
     100||TS  ||timeseries  ||
     101
     102\\\\
     103
     104== Common parameters
     105||='''Parameter Name'''  =||='''[#NCL_types NCL]\\[#NCL_types Type]'''  =||='''Default\\Value'''  =||='''Explanation'''  =||
     106|----------------
     107{{{#!td style="vertical-align:top;width: 150px"
     108[=#end_f '''end_f''']
     109}}}
     110{{{#!td style="vertical-align:top;width: 50px"
     111I
     112}}}
     113{{{#!td style="vertical-align:top;width: 120px"
     114-1
     115}}}
     116{{{#!td style="vertical-align:top;width: 800px"
     117Last cyclic number of data from a job chain that shall be used for input. Setting of '''end_f''' \= -1 is only useful when more than one file of a job chain exists. First cyclic number can be set with the parameter [[#start_f|start_f]].
     118}}}
     119|----------------
     120{{{#!td style="vertical-align:top"
     121[=#end_time_step '''end_time_step''']
     122}}}
     123{{{#!td style="vertical-align:top"
     124D
     125}}}
     126{{{#!td style="vertical-align:top"
     127-1.0d (last avail-\\able time step)
     128}}}
     129{{{#!td
     130Last time step in ''hour''. First time step can be set with [[#start_time_step|start_time_step]].
     131}}}
     132|----------------
     133{{{#!td style="vertical-align:top"
     134[=#file_1 '''file_1''']
     135}}}
     136{{{#!td style="vertical-align:top"
     137S
     138}}}
     139{{{#!td style="vertical-align:top"
     140"File in"
     141}}}
     142{{{#!td
     143Path and name of the input file.
     144
     145If there is more than one file for all time steps of a job chain, declare path and file name without cycle number and ".nc" (e.g. file_1='~/palm/current_version/JOBS/example_cbl/OUTPUT/example_cbl_pr'). First and last cycle numbers are given with the parameters [[#start_f|start_f]] and [[#end_f|end_f]], otherwise declare path and full file name (e.g. file_1='~/palm/current_version/JOBS/example_cbl/OUTPUT/example_cbl_pr.nc' ).
     146}}}
     147|----------------
     148{{{#!td style="vertical-align:top"
     149[=#file_config '''file_config''']
     150}}}
     151{{{#!td style="vertical-align:top"
     152S
     153}}}
     154{{{#!td style="vertical-align:top"
     155"$PALM_BIN/../../.ncl.config" or "$PALM_BIN/NCL/.ncl.config.default"
     156}}}
     157{{{#!td
     158Path and name of the NCL configuration file.
     159
     160If this parameter is omitted, palmplot will first try to load {{{$PALM_BIN/../../.ncl.config}}}. If that file does not exist, palmplot tries to load the default configuration file {{{$PALM_BIN/NCL/.ncl.config.default}}}.
     161}}}
     162|----------------
     163{{{#!td style="vertical-align:top"
     164[=#file_out '''file_out''']
     165}}}
     166{{{#!td style="vertical-align:top"
     167S
     168}}}
     169{{{#!td style="vertical-align:top"
     170"~/test_!**"
     171}}}
     172{{{#!td
     173Path and name of the output file. The output format of the file can be chosen with [[#format_out|format_out]].
     174}}}
     175|----------------
     176{{{#!td style="vertical-align:top"
     177[=#font_size '''font_size''']
     178}}}
     179{{{#!td style="vertical-align:top"
     180F
     181}}}
     182{{{#!td style="vertical-align:top"
     1830.04 (CS)\\
     1840.02 (PR+SP)\\
     1850.07 (TS)
     186}}}
     187{{{#!td
     188Font size of the strings in the plots in height of [[http://www.ncl.ucar.edu/Document/Graphics/ndc.shtml|NDC]] coordinates.
     189}}}
     190|----------------
     191{{{#!td style="vertical-align:top"
     192[=#format_out '''format_out''']
     193}}}
     194{{{#!td style="vertical-align:top"
     195S
     196}}}
     197{{{#!td style="vertical-align:top"
     198"x11"
     199}}}
     200{{{#!td
     201Format of the output file. Supported file formats \\are: x11, pdf, ps, eps, epsi ncgm or png. The name and path of the output file can be chosen with [[#file_out|file_out]].
     202}}}
     203|----------------
     204{{{#!td style="vertical-align:top"
     205[=#no_columns '''no_columns''']
     206}}}
     207{{{#!td style="vertical-align:top"
     208I
     209}}}
     210{{{#!td style="vertical-align:top"
     2111 \\ except for [[#no_rows_pr|profiles]]
     212}}}
     213{{{#!td
     214Number of plots in one row. Number of plots in one columns can be set with [[#no_rows|no_rows]].
     215}}}
     216|----------------
     217{{{#!td style="vertical-align:top"
     218[=#no_rows '''no_rows''']
     219}}}
     220{{{#!td style="vertical-align:top"
     221I
     222}}}
     223{{{#!td style="vertical-align:top"
     2242 \\ except for [[#no_columns_pr|profiles]]
     225}}}
     226{{{#!td
     227Number of plots in one column. Number of plots in one row can be set with [[#no_columns|no_columns]].
     228}}}
     229|----------------
     230{{{#!td style="vertical-align:top"
     231[=#start_f '''start_f''']
     232}}}
     233{{{#!td style="vertical-align:top"
     234I
     235}}}
     236{{{#!td style="vertical-align:top"
     237-1
     238}}}
     239{{{#!td
     240First cyclic number of data from a job chain that shall be used for input. Setting of '''start_f''' \= -1 is only useful when more than one file of a job chain exists. Last cyclic number can be set with the parameter [[#end_f|end_f]].
     241}}}
     242|----------------
     243{{{#!td style="vertical-align:top"
     244[=#start_time_step '''start_time_step''']
     245}}}
     246{{{#!td style="vertical-align:top"
     247D
     248}}}
     249{{{#!td style="vertical-align:top"
     250-1.0d (first avail-\\able time step)
     251}}}
     252{{{#!td
     253First time step in ''hour''. Last time step can be set with [[#end_time_step|end_time_step]].
     254}}}
     255|----------------
     256{{{#!td style="vertical-align:top"
     257[=#var '''var''']
     258}}}
     259{{{#!td style="vertical-align:top"
     260S
     261}}}
     262{{{#!td style="vertical-align:top"
     263"all"
     264}}}
     265{{{#!td
     266Names of variables in the input file that shall be output. For output of u, v and w"pt" use '''var''' = 'u v w"pt"' in the prompt or '''var''' = ",u,v,w"+dq+"pt"+dq in [[../ncl#Using.ncl.config|.ncl.config]].
     267}}}
     268
     269\\\\
     270
     271== Parameters for plotting cross sections
     272||='''Parameter Name'''  =||='''[#NCL_types NCL]\\[#NCL_types Type]'''  =||='''Default\\Value'''  =||='''Explanation'''  =||
     273|----------------
     274{{{#!td style="vertical-align:top;width:150px"
     275[=#axes_explicit_cs '''axes_explicit''']
     276}}}
     277{{{#!td style="vertical-align:top;width:50px"
     278I
     279}}}
     280{{{#!td style="vertical-align:top;width:120px"
     2810
     282}}}
     283{{{#!td style="vertical-align:top;width:800px"
     284Explicit setting of the axes is switched of with '''axes_explicit''' = 0 and can be switched on by using the value '''axes_explicit''' = 1. When switched on, the parameters [[#major_ticks_x_cs|major_ticks_x]], [[#major_ticks_y_cs|major_ticks_y]], [[#norm_x_cs|norm_x]], [[#norm_y_cs|norm_y]], [[#norm_z_cs|norm_z]], [[#unit_x_cs|unit_x]], [[#unit_y_cs|unit_y]] and [[#unit_z_cs|unit_z]] can be set.
     285}}}
     286|----------------
     287{{{#!td style="vertical-align:top"
     288[=#fill_mode_cs '''fill_mode''']
     289}}}
     290{{{#!td style="vertical-align:top"
     291S
     292}}}
     293{{{#!td style="vertical-align:top"
     294"!RasterFill"
     295}}}
     296{{{#!td
     297Type of filling of the contour plots. Further possibilities are '''fill_mode''' = "!AreaFill" and '''fill_mode''' = "!CellFill". In case of a large data set, setting of '''fill_mode''' = "!AreaFill" leads to a long execution time of the script.
     298}}}
     299|----------------
     300{{{#!td style="vertical-align:top"
     301[=#font_size_legend_cs '''font_size_legend''']
     302}}}
     303{{{#!td style="vertical-align:top"
     304F
     305}}}
     306{{{#!td style="vertical-align:top"
     3070.04
     308}}}
     309{{{#!td
     310Font size of legend strings in height of [[http://www.ncl.ucar.edu/Document/Graphics/ndc.shtml|NDC]] coordinates.
     311}}}
     312|----------------
     313{{{#!td style="vertical-align:top"
     314[=#legend_label_stride_cs '''legend_label_stride''']
     315}}}
     316{{{#!td style="vertical-align:top"
     317I
     318}}}
     319{{{#!td style="vertical-align:top"
     3202
     321}}}
     322{{{#!td
     323With '''legend_label_stride''' = 2 every second label is displayed.
     324}}}
     325|----------------
     326{{{#!td style="vertical-align:top"
     327[=#major_ticks_x_cs '''major_ticks_x''']
     328}}}
     329{{{#!td style="vertical-align:top"
     330I
     331}}}
     332{{{#!td style="vertical-align:top"
     3336
     334}}}
     335{{{#!td
     336Setting of '''major_ticks_x''' is only used if [[#axes_explicit_cs|axes_explicit]] = 1 and indicates the number of major tick marks at the x-axis.
     337}}}
     338|----------------
     339{{{#!td style="vertical-align:top"
     340[=#major_ticks_y_cs '''major_ticks_y''']
     341}}}
     342{{{#!td style="vertical-align:top"
     343I
     344}}}
     345{{{#!td style="vertical-align:top"
     3466
     347}}}
     348{{{#!td
     349Setting of '''major_ticks_y''' is only used if [[#axes_explicit_cs|axes_explicit]] = 1 and indicates the number of major tick marks at the y-axis.
     350}}}
     351|----------------
     352{{{#!td style="vertical-align:top"
     353[=#mode_cs '''mode''']
     354}}}
     355{{{#!td style="vertical-align:top"
     356S
     357}}}
     358{{{#!td style="vertical-align:top"
     359"Fill"
     360}}}
     361{{{#!td
     362Type of plot. '''mode''' = "Fill" leads to contour plots, '''mode''' = "Line" results in an isoline plot and '''mode''' = "Both" is a combination of the aforementioned types.
     363}}}
     364|----------------
     365{{{#!td style="vertical-align:top"
     366[=#norm_x_cs '''norm_x''']
     367}}}
     368{{{#!td style="vertical-align:top"
     369F
     370}}}
     371{{{#!td style="vertical-align:top"
     3721.0
     373}}}
     374{{{#!td
     375Setting of '''norm_x''' is only possible if [[#axes_explicit_cs|axes_explicit]] = 1 and normalizes the x-axis with the given value. '''norm_x''' = 1.0 results in no normalization. The resulting unit of the axis can be set explicitly with [[#unit_x_cs|unit_x]].
     376}}}
     377|----------------
     378{{{#!td style="vertical-align:top"
     379[=#norm_y_cs '''norm_y''']
     380}}}
     381{{{#!td style="vertical-align:top"
     382F
     383}}}
     384{{{#!td style="vertical-align:top"
     3851.0
     386}}}
     387{{{#!td
     388Setting of '''norm_y''' is only possible if [[#axes_explicit_cs|axes_explicit]] = 1 and normalizes the y-axis with the given value. '''norm_y''' = 1.0 results in no normalization. The resulting unit of the axis can be set explicitly with [[#unit_y_cs|unit_y]].
     389}}}
     390|----------------
     391{{{#!td style="vertical-align:top"
     392[=#norm_z_cs '''norm_z''']
     393}}}
     394{{{#!td style="vertical-align:top"
     395F
     396}}}
     397{{{#!td style="vertical-align:top"
     3981.0
     399}}}
     400{{{#!td
     401Setting of '''norm_z''' is only possible if [[#axes_explicit_cs|axes_explicit]] = 1 and normalizes the z-axis with the given value. '''norm_z''' = 1.0 results in no normalization. The resulting unit of the axis can be set explicitly with [[#unit_z_cs|unit_z]].
     402}}}
     403|----------------
     404{{{#!td style="vertical-align:top"
     405[=#plotvec_cs '''plotvec''']
     406}}}
     407{{{#!td style="vertical-align:top"
     408S
     409}}}
     410{{{#!td style="vertical-align:top"
     411"plotvec"
     412}}}
     413{{{#!td
     414Setting of '''plotvec''' is only possible if the vector plot is switched on: [[#vector_cs|vector]] = 1. '''plotvec''' can contain a list of variables on which the vector plot shall be overlaid. For example, if the vector plot shall be overlaid to pt and w, use '''plotvec''' = 'pt w' in the prompt and plotvec=",pt,w," in [[../ncl#Using.ncl.config|.ncl.config]].
     415}}}
     416|----------------
     417{{{#!td style="vertical-align:top"
     418[=#ref_mag_cs '''ref_mag''']
     419}}}
     420{{{#!td style="vertical-align:top"
     421F
     422}}}
     423{{{#!td style="vertical-align:top"
     4240.05
     425}}}
     426{{{#!td
     427Length of the reference vector in a vector plot in height of [[http://www.ncl.ucar.edu/Document/Graphics/ndc.shtml|NDC]] coordinates. Setting is only possible with vector plot switched on: [[#vector_cs|vector]] = 1
     428}}}
     429|----------------
     430{{{#!td style="vertical-align:top"
     431[=#shape_cs '''shape_cs''']
     432}}}
     433{{{#!td style="vertical-align:top"
     434I
     435}}}
     436{{{#!td style="vertical-align:top"
     4371
     438}}}
     439{{{#!td
     440Aspect ratio of the plot is kept with '''shape''' = 1 and not kept with '''shape''' = 0.
     441}}}
     442|----------------
     443{{{#!td style="vertical-align:top"
     444[=#sort_cs '''sort''']
     445}}}
     446{{{#!td style="vertical-align:top"
     447string
     448}}}
     449{{{#!td style="vertical-align:top"
     450"layer"
     451}}}
     452{{{#!td
     453Type of the sorting of the plots. If '''sort''' = "layer" the plots are sorted by height and if '''sort''' = "time" the plots are sorted by time.
     454}}}
     455|----------------
     456{{{#!td style="vertical-align:top"
     457[=#unit_x_cs '''unit_x''']
     458}}}
     459{{{#!td style="vertical-align:top"
     460S
     461}}}
     462{{{#!td style="vertical-align:top"
     463" "
     464}}}
     465{{{#!td
     466Setting of '''unit_x''' is only possible if [[#axes_explicit_cs|axes_explicit]] = 1 and useful if a normalization of the axis is used (see [[#norm_x_cs|norm_x]]). The default unit is ''meter''.
     467}}}
     468|----------------
     469{{{#!td style="vertical-align:top"
     470[=#unit_y_cs '''unit_y''']
     471}}}
     472{{{#!td style="vertical-align:top"
     473S
     474}}}
     475{{{#!td style="vertical-align:top"
     476" "
     477}}}
     478{{{#!td
     479Setting of '''unit_y''' is only possible if [[#axes_explicit_cs|axes_explicit]] = 1 and useful if a normalization of the axis is used (see [[#norm_y_cs|norm_y]]). The default unit is ''meter''.
     480}}}
     481|----------------
     482{{{#!td style="vertical-align:top"
     483[=#unit_z_cs '''unit_z''']
     484}}}
     485{{{#!td style="vertical-align:top"
     486S
     487}}}
     488{{{#!td style="vertical-align:top"
     489" "
     490}}}
     491{{{#!td
     492Setting of '''unit_z''' is only possible if [[#axes_explicit_cs|axes_explicit]] = 1 and useful if a normalization of the axis is used (see [[#norm_z_cs|norm_z]]). The default unit is ''meter''.
     493}}}
     494|----------------
     495{{{#!td style="vertical-align:top"
     496[=#vector_cs '''vector''']
     497}}}
     498{{{#!td style="vertical-align:top"
     499I
     500}}}
     501{{{#!td style="vertical-align:top"
     5020
     503}}}
     504{{{#!td
     505By default, no vector plots are produced with '''vector''' = 0. Vector plots can be switched on with '''vector''' = 1. Then, the setting of the components for the vector plot is required. A plot of horizontal wind vectors can be achieved by [[#vec1_cs|vec1]]='u' in the prompt and  [[#vec1_cs|vec1]]=",u," in [[../ncl#Using.ncl.config|.ncl.config]] and [[#vec2_cs|vec2]]='v' or [[#vec2_cs|vec2]]=",v,". Further on, the vector plot can be overlaid on other plots by using [[#plotvec_cs|plotvec]].
     506}}}
     507|----------------
     508{{{#!td style="vertical-align:top"
     509[=#vec1_cs '''vec1''']
     510}}}
     511{{{#!td style="vertical-align:top"
     512S
     513}}}
     514{{{#!td style="vertical-align:top"
     515"component1"
     516}}}
     517{{{#!td
     518First component for the vector plot. Setting is only possible with vector plot switched on: [[#vector_cs|vector]] = 1. By using [[#vec1_cs|vec1]]='u' in the prompt and [[#vec1_cs|vec1]]=",u," in [[../ncl#Using.ncl.config|.ncl.config]] for example, the first component of the vector plot is the wind component in x-direction.
     519}}}
     520|----------------
     521{{{#!td style="vertical-align:top"
     522[=#vec2_cs '''vec2''']
     523}}}
     524{{{#!td style="vertical-align:top"
     525S
     526}}}
     527{{{#!td style="vertical-align:top"
     528"component2"
     529}}}
     530{{{#!td
     531Second component for the vector plot. Setting is only possible with vector plot switched on: [[#vector_cs|vector]] = 1. By using [[#vec2_cs|vec2]]='w' in the prompt and [[#vec2_cs|vec2]]=",w," in [[../ncl#Using.ncl.config|.ncl.config]] for example, the second component of the vector plot is the wind component in z-direction.
     532}}}
     533|----------------
     534{{{#!td style="vertical-align:top"
     535[=#xe_cs '''xe''']
     536}}}
     537{{{#!td style="vertical-align:top"
     538D
     539}}}
     540{{{#!td style="vertical-align:top"
     541-1.0d (last avail-\\able value)
     542}}}
     543{{{#!td
     544Value for maximum of the x-axis which is only selectable if there are no preset layers for x. The value has to be given in ''meter'' which is rounded internally to the next existent grid point on the file. The minimum value of the x-axis can be set with [[#xs_cs|xs]].
     545}}}
     546|----------------
     547{{{#!td style="vertical-align:top"
     548[=#xs_cs '''xs''']
     549}}}
     550{{{#!td style="vertical-align:top"
     551D
     552}}}
     553{{{#!td style="vertical-align:top"
     554-1.0d (first avail-\\able value)
     555}}}
     556{{{#!td
     557Value for minimum of the x-axis which is only selectable if there are no preset layers for x. The value has to be given in ''meter'' which is rounded internally to the next existent grid point on the file. The maximum value of the x-axis can be set with [[#xe_cs|xe]].
     558}}}
     559|----------------
     560{{{#!td style="vertical-align:top"
     561[=#ye_cs '''ye''']
     562}}}
     563{{{#!td style="vertical-align:top"
     564D
     565}}}
     566{{{#!td style="vertical-align:top"
     567-1.0d (last avail-\\able value)
     568}}}
     569{{{#!td
     570Value for maximum of the y-axis which is only selectable if there are no preset layers for y. The value has to be given in ''meter'' which is rounded internally to the next existent grid point on the file. The minimum value of the y-axis can be set with [[#ys_cs|ys]].
     571}}}
     572|----------------
     573{{{#!td style="vertical-align:top"
     574[=#ys_cs '''ys''']
     575}}}
     576{{{#!td style="vertical-align:top"
     577D
     578}}}
     579{{{#!td style="vertical-align:top"
     580-1.0d (first avail-\\able value)
     581}}}
     582{{{#!td
     583Value for minimum of the y-axis which is only selectable if there are no preset layers for y. The value has to be given in ''meter'' which is rounded internally to the next existent grid point on the file. The maximum value of the x-axis can be set with [[#ye_cs|ye]].
     584}}}
     585|----------------
     586{{{#!td style="vertical-align:top"
     587[=#ze_cs '''ze''']
     588}}}
     589{{{#!td style="vertical-align:top"
     590D
     591}}}
     592{{{#!td style="vertical-align:top"
     593-1 (last avail-\\able value)
     594}}}
     595{{{#!td
     596Value for maximum of the z-axis which is only selectable if there are no preset layers for z. The value has to be given as index value of the vertical grid due to possible grid stretching. The minimum value of the z-axis can be set with [[#zs_cs|zs]].
     597}}}
     598|----------------
     599{{{#!td style="vertical-align:top"
     600[=#zs_cs '''zs''']
     601}}}
     602{{{#!td style="vertical-align:top"
     603D
     604}}}
     605{{{#!td style="vertical-align:top"
     606-1 (first avail-\\able value)
     607}}}
     608{{{#!td
     609Value for minimum of the z-axis which is only selectable if there are no preset layers for z. The value has to be given as index value of the vertical grid due to possible grid stretching. The maximum value of the z-axis can be set with [[#ze_cs|ze]].
     610}}}
     611|----------------
     612
     613\\\\
     614
     615== Parameters for plotting profiles
     616||='''Parameter Name'''  =||='''[#NCL_types NCL]\\[#NCL_types Type]'''  =||='''Default\\Value'''  =||='''Explanation'''  =||
     617|----------------
     618{{{#!td style="vertical-align:top;width: 150px"
     619[=#black_pr '''black''']
     620}}}
     621{{{#!td style="vertical-align:top;width: 50px"
     622I
     623}}}
     624{{{#!td style="vertical-align:top;width: 120px"
     6250
     626}}}
     627{{{#!td style="vertical-align:top;width: 800px"
     628The default setting '''black''' = 0 leads to colored lines in the plot and '''black''' = 1 results in black and white plots.
     629}}}
     630|----------------
     631{{{#!td style="vertical-align:top"
     632[=#combine_pr '''combine''']
     633}}}
     634{{{#!td style="vertical-align:top"
     635I
     636}}}
     637{{{#!td style="vertical-align:top"
     6380
     639}}}
     640{{{#!td
     641Combining of several individual variables in one plot is switched on with '''combine''' = 1. The number of combined variables has to be set in [[#number_comb_pr|number_comb]]. And the variables have to be specified in [[#c_var_pr|c_var]].
     642}}}
     643|----------------
     644{{{#!td style="vertical-align:top"
     645[=#c_var_pr '''c_var''']
     646}}}
     647{{{#!td style="vertical-align:top"
     648S
     649}}}
     650{{{#!td style="vertical-align:top"
     651"c_variables"
     652}}}
     653{{{#!td
     654List of variables that shall be plotted in a combined plot. This setting is only available when [[#combine_pr|combine]] = 1. The list must contain [[#number_comb_pr|number_comb]] entries. If a combination of u,v and w is desired, set '''c_var''' = 'u v w' in the prompt or '''c_var''' = ",u,v,w," in [[../ncl#Using.ncl.config|.ncl.config]].
     655}}}
     656|----------------
     657{{{#!td style="vertical-align:top"
     658[=#dash_pr '''dash''']
     659}}}
     660{{{#!td style="vertical-align:top"
     661I
     662}}}
     663{{{#!td style="vertical-align:top"
     6640
     665}}}
     666{{{#!td
     667The use of dashed lines in the plots can be switched on with '''dash''' = 1. The default '''dash''' = 0 leads to continuous lines.
     668}}}
     669|----------------
     670{{{#!td style="vertical-align:top"
     671[=#end_f_2_pr '''end_f_2''']
     672}}}
     673{{{#!td style="vertical-align:top"
     674I
     675}}}
     676{{{#!td style="vertical-align:top"
     677-1
     678}}}
     679{{{#!td
     680'''end_f_2''' is only used when [[#no_files_pr|no_files]] > 1 and denotes the last cyclic number of data from a job chain that shall be used for input of [[#file_2_pr|file_2]]. Setting of '''end_f_2''' \= -1 is only useful when more than one file of a job chain exists. The first cyclic number can be set with the parameter [[#start_f_2_pr|start_f_2]].
     681}}}
     682|----------------
     683{{{#!td style="vertical-align:top"
     684.\\
     685.\\
     686.\\
     687}}}
     688{{{#!td style="vertical-align:top"
     689.\\
     690.\\
     691.\\
     692}}}
     693{{{#!td style="vertical-align:top"
     694.\\
     695.\\
     696.\\
     697}}}
     698{{{#!td
     699.\\
     700.\\
     701.\\
     702}}}
     703|----------------
     704{{{#!td style="vertical-align:top"
     705[=#end_f_6_pr '''end_f_6''']
     706}}}
     707{{{#!td style="vertical-align:top"
     708I
     709}}}
     710{{{#!td style="vertical-align:top"
     711-1
     712}}}
     713{{{#!td
     714'''end_f_6''' is only used when [[#no_files_pr|no_files]] > 1 and denotes the last cyclic number of data from a job chain that shall be used for input of [[#file_6_pr|file_6]]. Setting of '''end_f_6''' \= -1 is only useful when more than one file of a job chain exists. The first cyclic number can be set with the parameter [[#start_f_6_pr|start_f_6]].
     715}}}
     716|----------------
     717{{{#!td style="vertical-align:top"
     718[=#end_x_pr '''end_x''']
     719}}}
     720{{{#!td style="vertical-align:top"
     721I
     722}}}
     723{{{#!td style="vertical-align:top"
     724-1
     725}}}
     726{{{#!td
     727If 3D data ([[../iofiles#DATA_3D_NETCDF|DATA_3D_NETCDF]] or [[../iofiles#DATA_3D_AV_NETCDF|DATA_3D_AV_NETCDF]]) is used as input, '''end_x''' denotes the last grid point which is included in averaging along the x-axis in ''grid points''. The default '''end_x''' = -1 uses all grid points in x-direction for averaging. The first grid point for averaging can be set via [[#star_x_pr|start_x]].
     728}}}
     729|----------------
     730{{{#!td style="vertical-align:top"
     731[=#end_y_pr '''end_y''']
     732}}}
     733{{{#!td style="vertical-align:top"
     734I
     735}}}
     736{{{#!td style="vertical-align:top"
     737-1
     738}}}
     739{{{#!td
     740If 3D data ([[../iofiles#DATA_3D_NETCDF|DATA_3D_NETCDF]] or [[../iofiles#DATA_3D_AV_NETCDF|DATA_3D_AV_NETCDF]]) is used as input, '''end_y''' denotes the last grid point which is included in averaging along the y-axis in ''grid points''. The default '''end_y''' = -1 uses all grid points in y-direction for averaging. The first grid point for averaging can be set via [[#star_y_pr|start_y]].
     741}}}
     742|----------------
     743{{{#!td style="vertical-align:top"
     744[=#file_2_pr '''file_2''']
     745}}}
     746{{{#!td style="vertical-align:top"
     747S
     748}}}
     749{{{#!td style="vertical-align:top"
     750"File in"
     751}}}
     752{{{#!td
     753Path and name of the second input file. Declaring of '''file_2''' is only allowed if [[#no_files_pr|no_files]] > 1.
     754
     755If there is more than one file for all time steps of a job chain, declare path and file name without cycle number and ".nc" (e.g. file_2='~/palm/current_version/JOBS/example_cbl/OUTPUT/example_cbl_pr'). First and last cycle numbers are given with the parameters [[#start_f|start_f]] and [[#end_f|end_f]], otherwise declare path and full file name (e.g. file_2='~/palm/current_version/JOBS/example_cbl/OUTPUT/example_cbl_pr.nc' ).
     756}}}
     757|----------------
     758{{{#!td style="vertical-align:top"
     759.\\
     760.\\
     761.\\
     762}}}
     763{{{#!td style="vertical-align:top"
     764.\\
     765.\\
     766.\\
     767}}}
     768{{{#!td style="vertical-align:top"
     769.\\
     770.\\
     771.\\
     772}}}
     773{{{#!td
     774.\\
     775.\\
     776.\\
     777}}}
     778|----------------
     779{{{#!td style="vertical-align:top"
     780[=#file_6_pr '''file_6''']
     781}}}
     782{{{#!td style="vertical-align:top"
     783S
     784}}}
     785{{{#!td style="vertical-align:top"
     786"File in"
     787}}}
     788{{{#!td
     789Path and name of the sixth input file. Declaring of '''file_6''' is only allowed if [[#no_files_pr|no_files]] > 1.
     790
     791If there is more than one file for all time steps of a job chain, declare path and file name without cycle number and ".nc" (e.g. file_6='~/palm/current_version/JOBS/example_cbl/OUTPUT/example_cbl_pr'). First and last cycle numbers are given with the parameters [[#start_f|start_f]] and [[#end_f|end_f]], otherwise declare path and full file name (e.g. file_6='~/palm/current_version/JOBS/example_cbl/OUTPUT/example_cbl_pr.nc' ).
     792}}}
     793|----------------
     794{{{#!td style="vertical-align:top"
     795[=#font_size_legend_pr '''font_size_legend''']
     796}}}
     797{{{#!td style="vertical-align:top"
     798F
     799}}}
     800{{{#!td style="vertical-align:top"
     8010.02
     802}}}
     803{{{#!td
     804Font size of legend strings in height of [[http://www.ncl.ucar.edu/Document/Graphics/ndc.shtml|NDC]] coordinates.
     805}}}
     806|----------------
     807{{{#!td style="vertical-align:top"
     808[=#log_z_pr '''log_z''']
     809}}}
     810{{{#!td style="vertical-align:top"
     811I
     812}}}
     813{{{#!td style="vertical-align:top"
     8140
     815}}}
     816{{{#!td
     817A logarithmic scaling of the z-axis can be switched on with '''log_z''' = 1. The default setting '''log_z''' = 0 results in a linear z-axis.
     818}}}
     819|----------------
     820{{{#!td style="vertical-align:top"
     821[=#max_z_pr '''max_z''']
     822}}}
     823{{{#!td style="vertical-align:top"
     824D
     825}}}
     826{{{#!td style="vertical-align:top"
     827-1.0d
     828}}}
     829{{{#!td
     830Value for maximum of the z-axis. The value has to be given in ''meter'' which is rounded internally to the next existent grid point on the file. The default value '''max_z''' = -1.0d uses the last available grid point. The minimum value of the z-axis can be set with [[#min_z_pr|min_z]].
     831}}}
     832|----------------
     833{{{#!td style="vertical-align:top"
     834[=#min_z_pr '''min_z''']
     835}}}
     836{{{#!td style="vertical-align:top"
     837D
     838}}}
     839{{{#!td style="vertical-align:top"
     840-1.0d
     841}}}
     842{{{#!td
     843Value for minimum of the z-axis. The value has to be given in ''meter'' which is rounded internally to the next existent grid point on the file. The default value '''min_z''' = -1.0d uses the first available grid point. The maximum value of the z-axis can be set with [[#max_z_pr|max_z]].
     844}}}
     845|----------------
     846{{{#!td style="vertical-align:top"
     847[=#name_legend_1_pr '''name_legend_1''']
     848}}}
     849{{{#!td style="vertical-align:top"
     850S
     851}}}
     852{{{#!td style="vertical-align:top"
     853"File 1"
     854}}}
     855{{{#!td
     856Label for the first item corresponding to the first input file which is placed in an extra legend (see also [[#no_files_pr|no_files]]). Declaring of '''name_legend_1''' is only allowed if [[#no_files_pr|no_files]] > 1.
     857}}}
     858|----------------
     859{{{#!td style="vertical-align:top"
     860.\\
     861.\\
     862.\\
     863}}}
     864{{{#!td style="vertical-align:top"
     865.\\
     866.\\
     867.\\
     868}}}
     869{{{#!td style="vertical-align:top"
     870.\\
     871.\\
     872.\\
     873}}}
     874{{{#!td
     875.\\
     876.\\
     877.\\
     878}}}
     879|----------------
     880{{{#!td style="vertical-align:top"
     881[=#name_legend_6_pr '''name_legend_6''']
     882}}}
     883{{{#!td style="vertical-align:top"
     884S
     885}}}
     886{{{#!td style="vertical-align:top"
     887"File 6"
     888}}}
     889{{{#!td
     890Label for the sixth item corresponding to the sixth input file which is placed in an extra legend (see also [[#no_files_pr|no_files]]). Declaring of '''name_legend_6''' is only allowed if [[#no_files_pr|no_files]] > 1.
     891}}}
     892|----------------
     893{{{#!td style="vertical-align:top"
     894[=#no_columns_pr '''no_columns''']
     895}}}
     896{{{#!td style="vertical-align:top"
     897I
     898}}}
     899{{{#!td style="vertical-align:top"
     900-1
     901}}}
     902{{{#!td
     903If '''no_columns=-1''', [wiki:doc/app/d3par#profile_columns profile_columns] will be used.
     904}}}
     905|----------------
     906{{{#!td style="vertical-align:top"
     907[=#no_rows_pr '''no_rows''']
     908}}}
     909{{{#!td style="vertical-align:top"
     910I
     911}}}
     912{{{#!td style="vertical-align:top"
     913-1
     914}}}
     915{{{#!td
     916If '''no_rows=-1''', [wiki:doc/app/d3par#profile_rows profile_rows] will be used.
     917}}}
     918|----------------
     919{{{#!td style="vertical-align:top"
     920[=#no_files_pr '''no_files''']
     921}}}
     922{{{#!td style="vertical-align:top"
     923I
     924}}}
     925{{{#!td style="vertical-align:top"
     9261
     927}}}
     928{{{#!td
     929The number of different files which shall be plotted together is set via '''no_files'''. Not more than six different files can be used. All the files must contain the same variables and dimensionality and identical variables are merged in one plot. The path and name of the additional files is set with the parameters [[#file_2_pr|file_2]], ..., [[#file_6_pr|file_6]]. It is also possible to use files of a job chain which can be declared with [[#start_f_2_pr|start_f_2]], ..., [[#start_f_6_pr|start_f_6]] and [[#end_f_2_pr|end_f_2]], ... , [[#end_f_6_pr|end_f_6]]. It is not possible to combine variables: [[#combine_pr|combine]] is automatically switched off. Further on, the overlaying of predefined variables is also not possible: [[#over_pr|over]] = 0.
     930}}}
     931|----------------
     932{{{#!td style="vertical-align:top"
     933[=#norm_z_pr '''norm_z''']
     934}}}
     935{{{#!td style="vertical-align:top"
     936F
     937}}}
     938{{{#!td style="vertical-align:top"
     9391.0
     940}}}
     941{{{#!td
     942The z-axis is normalized with the given value. By default, no normalizing occurs.
     943}}}
     944|----------------
     945{{{#!td style="vertical-align:top"
     946[=#number_comb_pr '''number_comb''']
     947}}}
     948{{{#!td style="vertical-align:top"
     949I
     950}}}
     951{{{#!td style="vertical-align:top"
     952-1
     953}}}
     954{{{#!td
     955The number of variables for combining is given with '''number_comb'''. The maximum number of combined variables is 3. Consequently, only '''number_comb''' = 2 or '''number_comb''' = 3 are valid values. Overall, the setting of '''number_comb''' is only possible if [[#combine_pr|combine]] = 1.
     956}}}
     957|----------------
     958{{{#!td style="vertical-align:top"
     959[=#over_pr '''over''']
     960}}}
     961{{{#!td style="vertical-align:top"
     962I
     963}}}
     964{{{#!td style="vertical-align:top"
     9650
     966}}}
     967{{{#!td
     968The predefined overlaying of special variables can be switched on with '''over''' = 1. But this feature can not be used if the input file contains output for [../inipar#statistic_regions statistic regions]. The default '''over''' = 0 results in no overlaying.
     969}}}
     970|----------------
     971{{{#!td style="vertical-align:top"
     972[=#start_f_2_pr '''start_f_2''']
     973}}}
     974{{{#!td style="vertical-align:top"
     975I
     976}}}
     977{{{#!td style="vertical-align:top"
     978-1
     979}}}
     980{{{#!td
     981'''start_f_2''' is only used when [[#no_files_pr|no_files]] > 1 and denotes the first cyclic number of data from a job chain that shall be used for input of [[#file_2_pr|file_2]]. Setting of '''start_f_2''' \= -1 is only useful when more than one file of a job chain exists. The last cyclic number can be set with the parameter [[#end_f_2_pr|end_f_2]].
     982}}}
     983|----------------
     984{{{#!td style="vertical-align:top"
     985.\\
     986.\\
     987.\\
     988}}}
     989{{{#!td style="vertical-align:top"
     990.\\
     991.\\
     992.\\
     993}}}
     994{{{#!td style="vertical-align:top"
     995.\\
     996.\\
     997.\\
     998}}}
     999{{{#!td
     1000.\\
     1001.\\
     1002.\\
     1003}}}
     1004|----------------
     1005{{{#!td style="vertical-align:top"
     1006[=#start_f_6_pr '''start_f_6''']
     1007}}}
     1008{{{#!td style="vertical-align:top"
     1009I
     1010}}}
     1011{{{#!td style="vertical-align:top"
     1012-1
     1013}}}
     1014{{{#!td
     1015'''start_f_6''' is only used when [[#no_files_pr|no_files]] > 1 and denotes the first cyclic number of data from a job chain that shall be used for input of [[#file_6_pr|file_6]]. Setting of '''start_f_6''' \= -1 is only useful when more than one file of a job chain exists. The last cyclic number can be set with the parameter [[#end_f_6_pr|end_f_6]].
     1016}}}
     1017|----------------
     1018{{{#!td style="vertical-align:top"
     1019[=#start_x_pr '''start_x''']
     1020}}}
     1021{{{#!td style="vertical-align:top"
     1022I
     1023}}}
     1024{{{#!td style="vertical-align:top"
     10250
     1026}}}
     1027{{{#!td
     1028If 3D data ([[../iofiles#DATA_3D_NETCDF|DATA_3D_NETCDF]] or [[../iofiles#DATA_3D_AV_NETCDF|DATA_3D_AV_NETCDF]]) is used as input, '''start_x''' denotes the first grid point which is included in averaging along the x-axis in ''grid points''. The default '''start_x''' = 0 uses the first available grid point in x-direction for averaging. The last grid point for averaging can be set via [[#end_x_pr|end_x]].
     1029}}}
     1030|----------------
     1031{{{#!td style="vertical-align:top"
     1032[=#start_y_pr '''start_y''']
     1033}}}
     1034{{{#!td style="vertical-align:top"
     1035I
     1036}}}
     1037{{{#!td style="vertical-align:top"
     10380
     1039}}}
     1040{{{#!td
     1041If 3D data ([[../iofiles#DATA_3D_NETCDF|DATA_3D_NETCDF]] or [[../iofiles#DATA_3D_AV_NETCDF|DATA_3D_AV_NETCDF]]) is used as input, '''start_y''' denotes the first grid point which is included in averaging along the y-axis in ''grid points''. The default '''start_y''' = 0 uses the first available grid point in y-direction for averaging. The last grid point for averaging can be set via [[#end_y_pr|end_y]].
     1042}}}
     1043|----------------
     1044{{{#!td style="vertical-align:top"
     1045[=#time_stride_pr '''time_stride''']
     1046}}}
     1047{{{#!td style="vertical-align:top"
     1048I
     1049}}}
     1050{{{#!td style="vertical-align:top"
     10511
     1052}}}
     1053{{{#!td
     1054'''time_stride''' denotes the temporal stride for the plot. If '''time_stride''' = 1 all the profiles between [[#start_time_step|start_time_step]] and [[#end_time_step|end_time_step]] are plotted (including [[#start_time_step|start_time_step]] and [[#end_time_step|end_time_step]]). If '''time_stride''' = 3 every third time step between [[#start_time_step|start_time_step]] and [[#end_time_step|end_time_step]] is plotted.
     1055}}}
     1056|----------------
     1057{{{#!td style="vertical-align:top"
     1058[=#var_pr '''var''']
     1059}}}
     1060{{{#!td style="vertical-align:top"
     1061S
     1062}}}
     1063{{{#!td style="vertical-align:top"
     1064"cross_profiles"
     1065}}}
     1066{{{#!td
     1067If '''var''' = "cross_profiles", all profiles are plotted as defined in [wiki:doc/app/d3par#cross_profiles cross_profiles]. If '''var''' = "all", each profile will be plotted solitary (this is recommended for plotting a high amount of profiles).
     1068}}}
     1069|----------------
     1070{{{#!td style="vertical-align:top"
     1071[=#xe_pr '''xe''']
     1072}}}
     1073{{{#!td style="vertical-align:top"
     1074F
     1075}}}
     1076{{{#!td style="vertical-align:top"
     1077-1.0
     1078}}}
     1079{{{#!td
     1080Value for maximum of the x-axis in the plot. When the default value '''xe''' = -1.0 is used the maximum value of the data is taken. The minimum value of the x-axis can be set with [[#xs_pr|xs]].
     1081}}}
     1082|----------------
     1083{{{#!td style="vertical-align:top"
     1084[=#xs_pr '''xs''']
     1085}}}
     1086{{{#!td style="vertical-align:top"
     1087F
     1088}}}
     1089{{{#!td style="vertical-align:top"
     1090-1.0
     1091}}}
     1092{{{#!td
     1093Value for minimum of the x-axis in the plot. When the default value '''xs''' = -1.0 is used the minimum value of the data is taken. The maximum value of the x-axis can be set with [[#xe_pr|xe]].
     1094}}}
     1095|----------------
     1096
     1097\\\\
     1098
     1099== Parameters for plotting spectra
     1100||='''Parameter Name'''  =||='''[#NCL_types NCL]\\[#NCL_types Type]'''  =||='''Default\\Value'''  =||='''Explanation'''  =||
     1101|----------------
     1102{{{#!td style="vertical-align:top;width: 150px"
     1103[=#black_sp '''black''']
     1104}}}
     1105{{{#!td style="vertical-align:top;width: 50px"
     1106I
     1107}}}
     1108{{{#!td style="vertical-align:top;width: 120px"
     11090
     1110}}}
     1111{{{#!td style="vertical-align:top;width: 800px"
     1112The default setting '''black''' = 0 leads to colored lines in the plot and '''black''' = 1 results in black and white plots.
     1113}}}
     1114|----------------
     1115{{{#!td style="vertical-align:top"
     1116[=#dash_sp '''dash''']
     1117}}}
     1118{{{#!td style="vertical-align:top"
     1119I
     1120}}}
     1121{{{#!td style="vertical-align:top"
     11220
     1123}}}
     1124{{{#!td
     1125The use of dashed lines in the plots can be switched on with '''dash''' = 1. The default '''dash''' = 0 leads to continuous lines.
     1126}}}
     1127|----------------
     1128{{{#!td style="vertical-align:top"
     1129[=#font_size_legend_sp '''font_size_legend''']
     1130}}}
     1131{{{#!td style="vertical-align:top"
     1132F
     1133}}}
     1134{{{#!td style="vertical-align:top"
     11350.02
     1136}}}
     1137{{{#!td
     1138Font size of legend strings in height of [[http://www.ncl.ucar.edu/Document/Graphics/ndc.shtml|NDC]] coordinates.
     1139}}}
     1140|----------------
     1141{{{#!td style="vertical-align:top"
     1142[=#height_level_sp '''height_level''']
     1143}}}
     1144{{{#!td style="vertical-align:top"
     1145I(0:99)
     1146}}}
     1147{{{#!td style="vertical-align:top"
     1148-1
     1149}}}
     1150{{{#!td
     1151The default '''height_level''' = -1 leads to the plot of all the height levels which are in the file. A sample of several height levels can be chosen by '''height_level''' = (/0,3,5/) for example. In this case, the first, fourth and sixth height level in the file are taken. Note that the height levels have to be given as indices and that the first index of an array is 0 in NCL.
     1152}}}
     1153|----------------
     1154{{{#!td style="vertical-align:top"
     1155[=#log_x_sp '''log_x''']
     1156}}}
     1157{{{#!td style="vertical-align:top"
     1158I
     1159}}}
     1160{{{#!td style="vertical-align:top"
     11611
     1162}}}
     1163{{{#!td
     1164The logarithmic scaling of the x-axis can be switched off with '''log_x''' = 0. The default setting '''log_x''' = 1 results in a logarithmic x-axis.
     1165}}}
     1166|----------------
     1167{{{#!td style="vertical-align:top"
     1168[=#log_y_sp '''log_y''']
     1169}}}
     1170{{{#!td style="vertical-align:top"
     1171I
     1172}}}
     1173{{{#!td style="vertical-align:top"
     11741
     1175}}}
     1176{{{#!td
     1177The logarithmic scaling of the y-axis can be switched off with '''log_y''' = 0. The default setting '''log_y''' = 1 results in a logarithmic y-axis.
     1178}}}
     1179|----------------
     1180{{{#!td style="vertical-align:top"
     1181[=#norm_height_sp '''norm_height''']
     1182}}}
     1183{{{#!td style="vertical-align:top"
     1184I
     1185}}}
     1186{{{#!td style="vertical-align:top"
     11870
     1188}}}
     1189{{{#!td
     1190The x-axis can be normalized with the height of each spectrum with the setting '''norm_height''' = 1. The default setting '''norm_height''' = 0 leads to no normalizing.
     1191}}}
     1192|----------------
     1193{{{#!td style="vertical-align:top"
     1194[=#norm_x_sp '''norm_x''']
     1195}}}
     1196{{{#!td style="vertical-align:top"
     1197F
     1198}}}
     1199{{{#!td style="vertical-align:top"
     12001.0
     1201}}}
     1202{{{#!td
     1203The setting of '''norm_x''' normalizes the x-axis with the assigned value, for example '''norm_x''' = 10.0. The unit of the x-axis can then be set appropriately with [[#unit_x_sp|unit_x]].
     1204}}}
     1205|----------------
     1206{{{#!td style="vertical-align:top"
     1207[=#norm_y_sp '''norm_y''']
     1208}}}
     1209{{{#!td style="vertical-align:top"
     1210F
     1211}}}
     1212{{{#!td style="vertical-align:top"
     12131.0
     1214}}}
     1215{{{#!td
     1216The setting of '''norm_y''' normalizes the y-axis with the assigned value, for example '''norm_y''' = 10.0. The unit of the y-axis can then be set appropriately with [[#unit_y_sp|unit_y]].
     1217}}}
     1218|----------------
     1219{{{#!td style="vertical-align:top"
     1220[=#sort_sp '''sort''']
     1221}}}
     1222{{{#!td style="vertical-align:top"
     1223S
     1224}}}
     1225{{{#!td style="vertical-align:top"
     1226"height"
     1227}}}
     1228{{{#!td
     1229'''sort''' = "height" leads to plots in which all the height levels are merged. The other possibility is '''sort''' = "time". Then, all time steps are merged in one plot.
     1230}}}
     1231|----------------
     1232{{{#!td style="vertical-align:top"
     1233[=#unit_x_sp '''unit_x''']
     1234}}}
     1235{{{#!td style="vertical-align:top"
     1236S
     1237}}}
     1238{{{#!td style="vertical-align:top"
     1239" "
     1240}}}
     1241{{{#!td
     1242The unit of the x-axis can be set with '''unit_x''' if [[#norm_x_sp|norm_x]] is set unequal to 1.0. The default unit on the x-axis is ''1/m''.
     1243}}}
     1244|----------------
     1245{{{#!td style="vertical-align:top"
     1246[=#unit_y_sp '''unit_y''']
     1247}}}
     1248{{{#!td style="vertical-align:top"
     1249S
     1250}}}
     1251{{{#!td style="vertical-align:top"
     1252" "
     1253}}}
     1254{{{#!td
     1255The unit of the y-axis can be set with '''unit_y'''. By default no unit is set for the y-axis.
     1256}}}
     1257|----------------
     1258
     1259\\\\
     1260
     1261== Parameters for plotting timeseries
     1262||='''Parameter Name'''  =||='''[#NCL_types NCL]\\[#NCL_types Type]'''  =||='''Default\\Value'''  =||='''Explanation'''  =||
     1263|----------------
     1264{{{#!td style="vertical-align:top;width: 150px"
     1265[=#norm_t_ts '''norm_t''']
     1266}}}
     1267{{{#!td style="vertical-align:top;width: 50px"
     1268F
     1269}}}
     1270{{{#!td style="vertical-align:top;width: 120px"
     12711.0
     1272}}}
     1273{{{#!td style="vertical-align:top;width: 800px"
     1274The setting of '''norm_t''' normalizes the x-axis (time) with the assigned value, for example '''norm_t''' = 3600.0. The unit of the x-axis can then be set appropriately with [[#unit_t_ts|unit_t]]. The default setting leads to no normalization.
     1275}}}
     1276|----------------
     1277{{{#!td style="vertical-align:top"
     1278[=#over_ts '''over''']
     1279}}}
     1280{{{#!td style="vertical-align:top"
     1281I
     1282}}}
     1283{{{#!td style="vertical-align:top"
     12840
     1285}}}
     1286{{{#!td
     1287The predefined overlaying of special variables can be switched on with '''over''' = 1. But this feature can not be used if the input file contains output for [../inipar#statistic_regions statistic regions]. The default '''over''' = 0 results in no overlaying.
     1288}}}
     1289|----------------
     1290{{{#!td style="vertical-align:top"
     1291[=#unit_t_ts '''unit_t''']
     1292}}}
     1293{{{#!td style="vertical-align:top"
     1294S
     1295}}}
     1296{{{#!td style="vertical-align:top"
     1297" "
     1298}}}
     1299{{{#!td
     1300The unit of the x-axis (time) can be set with '''unit_t''' if [[#norm_t_ts|norm_t]] is set unequal to 1.0. The default unit on the x-axis is ''s''.
     1301}}}
     1302|----------------