/[lmdze]/trunk/Manuel_LMDZE.texfol/Graphiques/disvert.gp
ViewVC logotype

Contents of /trunk/Manuel_LMDZE.texfol/Graphiques/disvert.gp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 12 - (show annotations)
Mon Jul 21 16:05:07 2008 UTC (15 years, 11 months ago) by guez
File size: 714 byte(s)
-- Minor modification of input/output:

Created procedure "read_logic". Variables of module "logic" are read
by "read_logic" instead of "conf_gcm". Variable "offline" of module
"conf_gcm" is read from namelist instead of "*.def".

Deleted arguments "dtime", "co2_ppm_etat0", "solaire_etat0",
"tabcntr0" and local variables "radpas", "tab_cntrl" of
"phyetat0". "phyetat0" does not read "controle" in "startphy.nc" any
longer. "phyetat0" now reads global attribute "itau_phy" from
"startphy.nc". "phyredem" does not create variable "controle" in
"startphy.nc" any longer. "phyredem" now writes global attribute
"itau_phy" of "startphy.nc". Deleted argument "tabcntr0" of
"printflag". Removed diagnostic messages written by "printflag" for
comparison of the variable "controle" of "startphy.nc" and the
variables read from "*.def" or namelist input.

-- Removing unwanted functionality:

Removed variable "lunout" from module "iniprint", replaced everywhere
by standard output.

Removed case "ocean == 'couple'" in "clmain", "interfsurf_hq" and
"physiq". Removed procedure "interfoce_cpl".

-- Should not change anything at run time:

Automated creation of graphs in documentation. More documentation on
input files.

Converted Fortran files to free format: "phyredem.f90", "printflag.f90".

Split module "clesphy" into "clesphys" and "clesphys2".

Removed variables "conser", "leapf", "forward", "apphys", "apdiss" and
"statcl" from module "logic". Added arguments "conser" to "advect",
"leapf" to "integrd". Added local variables "forward", "leapf",
"apphys", "conser", "apdiss" in "leapfrog".

Added intent attributes.

Deleted arguments "dtime" of "phyredem", "pdtime" of "flxdtdq", "sh"
of "phytrac", "dt" of "yamada".

Deleted local variables "dtime", "co2_ppm_etat0", "solaire_etat0",
"length", "tabcntr0" in "physiq". Replaced all references to "dtime"
by references to "pdtphys".

1 # This is a script for Gnuplot. This script plots the coefficients
2 # "ap" and "bp" used for the vertical grid in LMDZ.
3
4 reset
5 ##set terminal x11 reset
6 set terminal epslatex color
7 set output "disvert.eps"
8
9 pa = 5e4
10 ps = 101325.
11 bp(s) = exp(1. - 1. / s**2)
12 ap(s) = pa * (s - bp(s))
13 p(s) = ap(s) + bp(s) * ps
14
15 ##set terminal x11 0 title "bp"
16 set parametric
17 ##set xlabel "bp"
18 set ylabel "$s$"
19 set yrange [] reverse
20 set dummy s
21 set trange [0.01:1]
22 ##unset key
23 ##plot bp(s), s
24
25 # # set terminal x11 1 title "ap"
26 # # set xlabel "ap"
27 # # plot ap(s), s
28
29 ##set terminal x11 2 title "p"
30 ##unset xlabel
31 ##set key default
32 plot p(s), s title "$p$", ap(s), s title "$a$", \
33 bp(s) * ps, s title "$b \\times p_s$"
34
35 set output

  ViewVC Help
Powered by ViewVC 1.1.21