- sclgraf.dis.cpt [c+]
[..] La conception [cpt] spirale_ekman_disscl
Code
int spirale_ekman_dis_cpt(){
scltracefa(§, ƒ, ∅);
/* XVU, YVU and ZVU.
* Default: (2*X3AXIS, -2.5*Y3AXIS, 2*Z3AXIS, 'ABS'). */
// Parametrage cartésien par défaut équivalent
double xvu=2*2, yvu=-2.5*2, zvu=2*2;
spirale_ekman_dis_cpt("abs", xvu, yvu, zvu, "./srt");
// Parametrage angulaire par defaut equivalent
xvu=90-tan-12(-2.5,2)/π*180;
yvu=tan-12(2, √(2*2+2.5*2.5))/π*180;
zvu=2*√(2*2+2.5*2.5+2*2);
spirale_ekman_dis_cpt("angle", xvu, yvu, zvu, "./srt");
//
int azn=360, azi;
for(azi=0;azi<azn;azi+=7){
xvu = (double)azi;
yvu = 0;
zvu=2*√(2*2+2.5*2.5+2*2);
spirale_ekman_dis_cpt("angle", xvu, yvu, zvu,
/*"./prd/doc/anim/spirale_ekman/spirale_ekman-24.02"*/"./srt");
}
scltracefe(§, ƒ, ∅);
return 0;
}
/* ƒ décorée par
le 08-03-2025 16:00:48 */
int spirale_ekman_dis_cpt(std::string svu, double xvu, double yvu, double zvu,
std::string imgrep){
scltracefa(§, ƒ, ∅);
/*std::string imgvrf = imgrep + "/vrf";
newrep(imgvrf.c_str());*/
/* Calcul des courants ageostrophiques:
* Application numerique à 40°N, Kmv=0.1, rho=1026,
* wind_stress_vector=rho_air*drag_coef*norme(wind_velocity)*wind_velocity_vector
* Prenons des vents de 50 km/h diriges vers le sud.*/
double latitude_rad=40*π/180;
double f_coriolis=(4*π/86400.0)*sin(latitude_rad);
double rho_eau=1026.0; // [kg/m3]
double rho_air=1.2; // [kg/m3] (pris a patm standard et sous 20°C)
double drag_coef=1.47E-3; // (pris a partir de Smith 1988)
double u_wind=0;
double v_wind=-50.0*103/3600.0;
double Kmv=0.1; // empirique
// Calcul de la force d'entrainement du vent (wind stress):
double tho_x=rho_air*drag_coef*u_wind*fabs(u_wind); // [ddr-18.08] +fabs
double tho_y=rho_air*drag_coef*v_wind*fabs(v_wind); // [ddr-18.08] +fabs
// Calcul de l'epaisseur de la couche d'Ekman
double D_Ek=√(2*Kmv/f_coriolis);
// nombre de points de discrétisation
double prof=(ceil(D_Ek/10))*10*3; // profondeur de calcul
double pas_disc=5; // en metres
int nb_pts=(int)round(prof/pas_disc), profi;
scltracefc("nb_pts : %d\n", nb_pts);
// creation du vecteur z pour la profondeur
/*double *x = newtab<double>(nb_pts, 0.0);
double *y = newtab<double>(nb_pts, 0.0);*/
double *z = newtablin(nb_pts, 0, -prof);
// coef V0
double V0 = (1/(rho_eau*√(f_coriolis*Kmv)));
double *u_ag=new double[nb_pts], *v_ag=new double[nb_pts],
*w_ag=new double[nb_pts];
double **vx = newmat<double>(2, nb_pts), **vy = newmat<double>(2, nb_pts),
**vz = newmat<double>(2, nb_pts);
// Calcul des vitesses zonales et meridiennes ageostrophiques
for(profi=0;profi<nb_pts;profi++){
// [ddr-18.08]
//u_ek=V0*np.exp(z/D_Ek)*(tho_x*np.cos(z/D_Ek-np.pi/4)-tho_y*np.sin(z/D_Ek-np.pi/4))
//v_ek=V0*np.exp(z/D_Ek)*(tho_x*np.sin(z/D_Ek-np.pi/4)+tho_y*np.cos(z/D_Ek-np.pi/4))
u_ag[profi]=V0*exp(z[profi]/D_Ek)*(tho_x*cos(z[profi]/D_Ek-π/4)-tho_y*sin(z[profi]/D_Ek-π/4));
v_ag[profi]=V0*exp(z[profi]/D_Ek)*(tho_x*sin(z[profi]/D_Ek-π/4)+tho_y*cos(z[profi]/D_Ek-π/4));
w_ag[profi]=0;
vx[0][profi]=0; vx[1][profi]=u_ag[profi];
vy[0][profi]=0; vy[1][profi]=v_ag[profi];
vz[0][profi]=z[profi]; vz[1][profi]=z[profi];
}
// Temporaire pour animation azimuth [0..360[ 📝
char azc[4]; azc[3]='\0';
sprintf(azc, "%.3d", (int)round(xvu)); // 1-> 001, 10-> 010!!!
/*scl::string_c imgname=scl::string_c(__FUNCTION__)+".pdf",
imgpath=imgvrf+"/"+imgname;*/
scl::string_c imgname=scl::string_c(ƒ)+"_"+svu+"_"+
/*num_str<double>(xvu)*/azc +"_"+num_str<double>(yvu)+"_"+
num_str<double>(zvu)+".vrf.pdf";
scl::string_c imgpath=imgrep+"/"+imgname;
std::string linespec="-t";
graf3_dis(imgpath.c_str(), nb_pts, u_ag, v_ag, z,
"champs", nb_pts, vx[0], vx[1], vy[0], vy[1], vz[0], vz[1],
"linespec", linespec.c_str(),
"xlabel", "x", "ylabel", "y", "zlabel", "Depth",
"title", "Computed ageostrophic velocities from wind stress [m/s] (Ekman Spiral)",
"box", "on", "subtitlex", imgname.c_str(),
"linespeca", "-a", "header", "on", ∅);
imgname.clear();
imgname=scl::string_c(ƒ)+"_"+svu+"_"+
/*num_str<double>(xvu)*/azc +"_"+num_str<double>(yvu)+"_"+
num_str<double>(zvu)+".pdf";
imgpath.clear(); imgpath=imgrep+"/"+imgname;
graf3_dis(imgpath.c_str(), nb_pts, u_ag, v_ag, z,
"champs", nb_pts, vx[0], vx[1], vy[0], vy[1], vz[0], vz[1],
"linespec", linespec.c_str(), "linespecc", "--l",
/*"xlabel", "Vitesse zonale [m/s]", "ylabel", "Vitesse meridienne [m/s]",
"zlabel", "Profondeur [m]",
"title", "Vitesses ageostrophiques dues a la force d'entrainement du vent",
"subtitle", "<<Spirale d'Ekman>>",*/
"box", "on", /*"subtitlex", imgname.c_str(),*/
"view", svu.c_str(), "viewp", xvu, yvu, zvu, "axis", "off",
"background-color", "w", //[SCL_VR_000104]
/*"header", "on",*/ ∅);
scltracefe(§, ƒ, ∅);
return 0;
}
/* ƒ décorée par
le 08-03-2025 16:00:48 */
Sortie
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_abs_004_-5_4.vrf.pdf <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 874 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_abs_004_-5_4.pdf <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_141_31.9928_7. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 874 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_141_31.9928_7. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_000_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 826 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_000_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_007_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 822 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_007_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_014_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 819 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_014_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_021_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 811 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_021_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_028_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 801 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_028_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_035_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 782 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_035_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_042_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 751 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_042_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_049_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 724 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_049_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_056_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 689 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_056_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_063_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 668 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_063_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_070_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 654 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_070_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_077_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 639 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_077_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_084_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 631 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_084_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_091_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 651 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_091_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_098_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 671 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_098_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_105_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 698 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_105_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_112_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 727 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_112_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_119_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 753 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_119_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_126_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 784 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_126_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_133_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 798 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_133_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_140_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 809 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_140_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_147_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 818 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_147_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_154_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 821 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_154_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_161_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 819 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_161_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_168_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 806 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_168_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_175_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 799 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_175_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_182_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 793 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_182_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_189_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 785 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_189_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_196_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 774 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_196_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_203_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 768 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_203_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_210_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 754 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_210_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_217_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 727 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_217_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_224_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 706 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_224_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_231_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 678 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_231_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_238_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 654 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_238_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_245_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 642 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_245_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_252_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 630 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_252_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_259_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 623 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_259_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_266_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 631 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_266_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_273_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 651 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_273_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_280_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 656 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_280_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_287_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 691 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_287_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_294_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 723 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_294_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_301_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 741 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_301_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_308_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 774 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_308_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_315_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 798 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_315_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_322_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 810 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_322_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_329_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 825 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_329_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_336_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 829 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_336_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_343_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 832 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_343_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_350_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 831 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_350_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[>..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
nb_pts : 30
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 2791 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_357_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
<< END OF DISLIN / VERSION 11.3.2 <<
<< Date : 08.03.2025 Time : 16:00:48 Pageformat: DA4L <<
<< Vectors : 827 Warnings: 0 Fileformat: PDF <<
<< Metafile: ./srt/spirale_ekman_dis_cpt_angle_357_0_7.54983. <<
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]
[<..\cpt\src\sclgraf.dis.cpt.cpp.spirale_ekman_dis_cpt]