1 | PROGRAM rcm1d |
---|
2 | |
---|
3 | USE infotrac |
---|
4 | use control_mod, only: planet_type, day_step |
---|
5 | USE phys_state_var_mod |
---|
6 | use chemparam_mod |
---|
7 | USE comconst_mod, ONLY: cpp,t0_venus,nu_venus |
---|
8 | use cpdet_mod, only: ini_cpdet |
---|
9 | use moyzon_mod, only: tmoy |
---|
10 | USE comvert_mod, ONLY: ap,bp,presnivs,pa,preff,nivsigs,nivsig, |
---|
11 | . aps,bps,scaleheight,pseudoalt, |
---|
12 | . disvert_type,pressure_exner |
---|
13 | use conc, only: rho |
---|
14 | USE iniphysiq_mod, ONLY: iniphysiq |
---|
15 | USE mod_const_mpi, ONLY: comm_lmdz |
---|
16 | USE physiq_mod, ONLY: physiq |
---|
17 | USE logic_mod, ONLY: iflag_trac |
---|
18 | IMPLICIT NONE |
---|
19 | |
---|
20 | c======================================================================= |
---|
21 | c subject: |
---|
22 | c -------- |
---|
23 | c PROGRAM useful to run physical part of the venusian GCM in a 1D column |
---|
24 | c |
---|
25 | c Can be compiled with a command like (e.g. for 50 layers) |
---|
26 | c "makelmdz -p venus -d 50 rcm1d" |
---|
27 | |
---|
28 | c It requires the files "rcm1d.def" "physiq.def" |
---|
29 | c and a file describing the sigma layers (e.g. "z2sig.def") |
---|
30 | c |
---|
31 | c author: Frederic Hourdin, R.Fournier,F.Forget (original Mars version) |
---|
32 | c ------- Sebastien Lebonnois (Venus version) |
---|
33 | c |
---|
34 | c======================================================================= |
---|
35 | |
---|
36 | #include "dimensions.h" |
---|
37 | #include "dimsoil.h" |
---|
38 | #include "comcstfi.h" |
---|
39 | #include "netcdf.inc" |
---|
40 | #include "clesphys.h" |
---|
41 | #include "iniprint.h" |
---|
42 | #include "tabcontrol.h" |
---|
43 | |
---|
44 | c -------------------------------------------------------------- |
---|
45 | c Declarations |
---|
46 | c -------------------------------------------------------------- |
---|
47 | c |
---|
48 | INTEGER unit ! unite de lecture de "rcm1d.def" |
---|
49 | INTEGER unitstart ! unite d'ecriture de "startphy.nc" |
---|
50 | INTEGER nlayer,nlevel,nsoil,ndt |
---|
51 | INTEGER ilayer,ilevel,isoil,idt,iq |
---|
52 | LOGICAl firstcall,lastcall |
---|
53 | c |
---|
54 | INTEGER day0 ! date initial (sol ; =0 a Ls=0) |
---|
55 | REAL day ! date durant le run |
---|
56 | REAL time ! time (0<time<1 ; time=0.5 a midi) |
---|
57 | REAL play(llm) ! Pressure at the middle of the layers (Pa) |
---|
58 | REAL plev(llm+1) ! intermediate pressure levels (pa) |
---|
59 | REAL psurf |
---|
60 | REAL u(llm),v(llm) ! zonal, meridional wind |
---|
61 | REAL gru,grv ! prescribed "geostrophic" background wind |
---|
62 | REAL temp(llm) ! temperature at the middle of the layers |
---|
63 | REAL,allocatable :: q(:,:) ! tracer mixing ratio (e.g. kg/kg) |
---|
64 | REAL zlay(llm) ! altitude estimee dans les couches (km) |
---|
65 | REAL long(1),lati(1),area(1) |
---|
66 | REAL cufi(1),cvfi(1) |
---|
67 | REAL phisfi(1) |
---|
68 | |
---|
69 | c Physical and dynamical tandencies (e.g. m.s-2, K/s, Pa/s) |
---|
70 | REAL du(llm),dv(llm),dtemp(llm) |
---|
71 | REAL dudyn(llm),dvdyn(llm),dtempdyn(llm) |
---|
72 | REAL dpsurf(1) |
---|
73 | REAL,allocatable :: dq(:,:) |
---|
74 | |
---|
75 | c Various intermediate variables |
---|
76 | REAL zls |
---|
77 | REAL phi(llm),s(llm) |
---|
78 | REAL pk(llm),pks, w(llm) |
---|
79 | INTEGER l, ierr, aslun |
---|
80 | REAL tmp1(0:llm),tmp2(0:llm) |
---|
81 | |
---|
82 | character*2 str2 |
---|
83 | |
---|
84 | real pi |
---|
85 | |
---|
86 | c======================================================================= |
---|
87 | |
---|
88 | c======================================================================= |
---|
89 | c INITIALISATION |
---|
90 | c======================================================================= |
---|
91 | |
---|
92 | lunout = 6 |
---|
93 | |
---|
94 | c ------------------------------------------------------ |
---|
95 | c Constantes prescrites ICI |
---|
96 | c ------------------------------------------------------ |
---|
97 | |
---|
98 | pi=2.E+0*asin(1.E+0) |
---|
99 | |
---|
100 | c Constante de la Planete Venus |
---|
101 | c ----------------------------- |
---|
102 | planet_type = "venus" |
---|
103 | rad=6051300. ! rayon de Venus (m) ~6051300 m |
---|
104 | daysec= 1.0087e7 ! duree du sol (s) ~1.e7 s |
---|
105 | omeg=4.*asin(1.)/19.4141e6 ! vitesse de rotation (rad.s-1) |
---|
106 | g= 8.87 ! gravite (m.s-2) ~8.87 |
---|
107 | mugaz=43.44 ! Masse molaire de l'atm (g.mol-1) ~43.44 |
---|
108 | ! ADAPTATION GCM POUR CP(T) |
---|
109 | ! VENUS: Cp(T) = cpp*(T/T0)^nu |
---|
110 | ! avec T0=460. et nu=0.35 |
---|
111 | cpp=1.0e3 |
---|
112 | ! cpp=9.0e2 ! version constante |
---|
113 | r= 8.314511E+0 *1000.E+0/mugaz |
---|
114 | rcp= r/cpp |
---|
115 | |
---|
116 | c----------------------------------------------------------------------- |
---|
117 | c Initialisation des traceurs |
---|
118 | c --------------------------- |
---|
119 | c Choix du nombre de traceurs et du schema pour l'advection |
---|
120 | c dans fichier traceur.def |
---|
121 | call infotrac_init |
---|
122 | if (nqtot.gt.1) iflag_trac=1 |
---|
123 | |
---|
124 | c Allocation de la tableau q : champs advectes |
---|
125 | allocate(q(llm,nqtot)) |
---|
126 | allocate(dq(llm,nqtot)) |
---|
127 | |
---|
128 | c ------------------------------------------------------ |
---|
129 | c Lecture des parametres dans "rcm1d.def" |
---|
130 | c ------------------------------------------------------ |
---|
131 | |
---|
132 | c Opening parameters file "rcm1d.def" |
---|
133 | c --------------------------------------- |
---|
134 | unit =97 |
---|
135 | OPEN(unit,file='rcm1d.def',status='old',form='formatted' |
---|
136 | . ,iostat=ierr) |
---|
137 | |
---|
138 | IF(ierr.ne.0) THEN |
---|
139 | write(*,*) 'Problem to open "rcm1d.def' |
---|
140 | write(*,*) 'Is it there ?' |
---|
141 | stop |
---|
142 | END IF |
---|
143 | |
---|
144 | c Date et heure locale du debut du run |
---|
145 | c ------------------------------------ |
---|
146 | c Date (en sols depuis le solstice de printemps) du debut du run |
---|
147 | day0 = 0 |
---|
148 | PRINT *,'date de depart ?' |
---|
149 | READ(unit,*) day0 |
---|
150 | day=REAL(day0) |
---|
151 | PRINT *,day0 |
---|
152 | c Heure de demarrage |
---|
153 | PRINT *,'heure de debut de simulation (entre 0 et 24) ?' |
---|
154 | READ(unit,*) time |
---|
155 | time=time/24.E+0 |
---|
156 | |
---|
157 | c Discretisation (Definition de la grille et des pas de temps) |
---|
158 | c -------------- |
---|
159 | c |
---|
160 | nlayer=llm |
---|
161 | nlevel=nlayer+1 |
---|
162 | nsoil=nsoilmx |
---|
163 | PRINT *,'nombre de pas de temps par jour ?' |
---|
164 | READ(unit,*) day_step |
---|
165 | print*,day_step |
---|
166 | |
---|
167 | c PRINT *,'nombre d appel au rayonnement par jour ?' |
---|
168 | c READ(unit,*) nbapp_rad |
---|
169 | c print*,nbapp_rad |
---|
170 | c LU DANS PHYSIQ.DEF... |
---|
171 | nbapp_rad = 1000. |
---|
172 | |
---|
173 | PRINT *,'nombre de jours simules ?' |
---|
174 | READ(unit,*) ndt |
---|
175 | print*,ndt |
---|
176 | |
---|
177 | ndt=ndt*day_step |
---|
178 | dtphys=daysec/day_step |
---|
179 | dtime=dtphys |
---|
180 | |
---|
181 | c Pression de surface sur la planete |
---|
182 | c ------------------------------------ |
---|
183 | c |
---|
184 | PRINT *,'pression au sol' |
---|
185 | READ(unit,*) psurf |
---|
186 | PRINT *,psurf |
---|
187 | c Pression de reference ! voir dyn3d/etat0_venus |
---|
188 | c pa = 5.e4 |
---|
189 | pa = 1.e6 |
---|
190 | preff = 9.2e6 ! 92 bars |
---|
191 | c preff = psurf |
---|
192 | |
---|
193 | c latitude/longitude |
---|
194 | c ------------------- |
---|
195 | PRINT *,'latitude en degres ?' |
---|
196 | READ(unit,*) lati(1) |
---|
197 | PRINT *,lati(1) |
---|
198 | lati(1)=lati(1)*pi/180. ! must be in radians. |
---|
199 | long(1)=0.E+0 |
---|
200 | |
---|
201 | c Initialisation speciales "physiq" |
---|
202 | c --------------------------------- |
---|
203 | |
---|
204 | ! CALL init_phys_lmdz(iim,jjm,llm,1,(/1/)) |
---|
205 | |
---|
206 | c la surface de chaque maille est inutile en 1D ---> |
---|
207 | area(1)=1.E+0 |
---|
208 | c de meme ? |
---|
209 | cufi(1)=1.E+0 |
---|
210 | cvfi(1)=1.E+0 |
---|
211 | |
---|
212 | call ini_cpdet |
---|
213 | |
---|
214 | c Ehouarn: iniphysiq requires arrays related to (3D) dynamics grid, |
---|
215 | c e.g. for cell boundaries, which are meaningless in 1D; so pad these |
---|
216 | c with '0.' when necessary |
---|
217 | CALL iniphysiq(1,1,llm, |
---|
218 | & 1,comm_lmdz, |
---|
219 | & daysec,day0,dtphys, |
---|
220 | & (/lati(1),0./),(/0./), |
---|
221 | & (/0.,0./),(/long(1),0./), |
---|
222 | & (/ (/area,0./),(/0.,0./) /), |
---|
223 | & (/cufi,0.,0.,0./), |
---|
224 | & (/cvfi,0./), |
---|
225 | & rad,g,r,cpp,1) |
---|
226 | |
---|
227 | c le geopotentiel au sol est inutile en 1D car tout est controle |
---|
228 | c par la pression de surface ---> |
---|
229 | phisfi(1)=0.E+0 |
---|
230 | |
---|
231 | c Initialisation pour prendre en compte les vents en 1-D |
---|
232 | c ------------------------------------------------------ |
---|
233 | |
---|
234 | c vent geostrophique |
---|
235 | PRINT *,'composante vers l est du vent geostrophique (U) ?' |
---|
236 | READ(unit,*) gru |
---|
237 | PRINT *,'composante vers le nord du vent geostrophique (V) ?' |
---|
238 | READ(unit,*) grv |
---|
239 | |
---|
240 | c Initialisation des vents au premier pas de temps |
---|
241 | DO ilayer=1,nlayer |
---|
242 | u(ilayer)=gru |
---|
243 | v(ilayer)=grv |
---|
244 | ENDDO |
---|
245 | |
---|
246 | c calcul des pressions et altitudes en utilisant les niveaux sigma |
---|
247 | c ---------------------------------------------------------------- |
---|
248 | |
---|
249 | c Vertical Coordinates (hybrids) |
---|
250 | c """""""""""""""""""" |
---|
251 | CALL disvert_noterre |
---|
252 | |
---|
253 | c Calcul au milieu des couches : Vient de la version Mars |
---|
254 | c WARNING : le choix de placer le milieu des couches au niveau de |
---|
255 | c pression intermédiaire est arbitraire et pourrait etre modifié. |
---|
256 | c C'est fait de la meme facon dans disvert |
---|
257 | |
---|
258 | DO l = 1, llm |
---|
259 | aps(l) = 0.5 *( ap(l) +ap(l+1)) |
---|
260 | bps(l) = 0.5 *( bp(l) +bp(l+1)) |
---|
261 | ENDDO |
---|
262 | |
---|
263 | DO ilevel=1,nlevel |
---|
264 | plev(ilevel)=ap(ilevel)+psurf*bp(ilevel) |
---|
265 | ENDDO |
---|
266 | |
---|
267 | DO ilayer=1,nlayer |
---|
268 | play(ilayer)=aps(ilayer)+psurf*bps(ilayer) |
---|
269 | pk(ilayer) =cpp*(play(ilayer)/preff)**rcp |
---|
270 | c write(120,*) ilayer,plev(ilayer),play(ilayer) |
---|
271 | ENDDO |
---|
272 | c write(120,*) nlevel,plev(nlevel) |
---|
273 | c stop |
---|
274 | |
---|
275 | pks=cpp*(psurf/preff)**rcp |
---|
276 | |
---|
277 | c init des variables pour phyredem |
---|
278 | c -------------------------------- |
---|
279 | call phys_state_var_init |
---|
280 | |
---|
281 | c profil de temperature et altitude au premier appel |
---|
282 | c -------------------------------------------------- |
---|
283 | |
---|
284 | c modif par rapport a Mars: |
---|
285 | c on envoie dz/T=-log(play/psurf)*r/g dans profile |
---|
286 | tmp1(0)=0.0 |
---|
287 | tmp1(1)= -log(play(1)/psurf)*r/g |
---|
288 | DO ilayer=2,nlayer |
---|
289 | tmp1(ilayer)=-log(play(ilayer)/play(ilayer-1))*r/g |
---|
290 | ENDDO |
---|
291 | call profile(unit,nlayer+1,tmp1,tmp2) |
---|
292 | CLOSE(unit) |
---|
293 | |
---|
294 | print*," Pression Altitude Temperature" |
---|
295 | ilayer=1 |
---|
296 | ftsol(1)=tmp2(0) |
---|
297 | temp(1)=tmp2(1) |
---|
298 | zlay(1)=tmp2(1)*tmp1(1) |
---|
299 | print*," 0",ftsol(1) |
---|
300 | print*,ilayer,play(ilayer),zlay(ilayer),temp(ilayer) |
---|
301 | DO ilayer=2,nlayer |
---|
302 | temp(ilayer)=tmp2(ilayer) |
---|
303 | zlay(ilayer)=zlay(ilayer-1)+tmp2(ilayer)*tmp1(ilayer) |
---|
304 | print*,ilayer,play(ilayer),zlay(ilayer),temp(ilayer) |
---|
305 | ENDDO |
---|
306 | |
---|
307 | allocate(tmoy(llm)) |
---|
308 | tmoy(:)=temp(:) |
---|
309 | |
---|
310 | c temperature du sous-sol |
---|
311 | c ~~~~~~~~~~~~~~~~~~~~~~~ |
---|
312 | DO isoil=1,nsoil |
---|
313 | ftsoil(1,isoil)=ftsol(1) |
---|
314 | ENDDO |
---|
315 | |
---|
316 | c Initialisation des traceurs |
---|
317 | c --------------------------- |
---|
318 | |
---|
319 | DO iq=1,nqtot |
---|
320 | DO ilayer=1,nlayer |
---|
321 | q(ilayer,iq) = 0. |
---|
322 | ENDDO |
---|
323 | ENDDO |
---|
324 | |
---|
325 | c FULL CHEMISTRY !! AJOUTER INIT AURELIEN... |
---|
326 | C Faudrait lire les cles avant pour mettre ca en option.... |
---|
327 | c ou alors mettre ca dans physiq |
---|
328 | |
---|
329 | c Initialisation des parametres d'oro |
---|
330 | c ----------------------------------- |
---|
331 | |
---|
332 | zmea(1) = 0. |
---|
333 | zstd(1) = 0. |
---|
334 | zsig(1) = 0. |
---|
335 | zgam(1) = 0. |
---|
336 | zthe(1) = 0. |
---|
337 | zpic(1) = 0. |
---|
338 | zval(1) = 0. |
---|
339 | |
---|
340 | c Initialisation albedo |
---|
341 | c ---------------------- |
---|
342 | |
---|
343 | falbe(1)=0.1 |
---|
344 | |
---|
345 | c Ecriture de "startphy.nc" |
---|
346 | c ------------------------- |
---|
347 | c (Ce fichier sera aussitot relu au premier |
---|
348 | c appel de "physiq", mais il est necessaire pour passer |
---|
349 | c les variables purement physiques a "physiq"... |
---|
350 | |
---|
351 | solsw(1) = 0. |
---|
352 | sollw(1) = 0. |
---|
353 | fder(1) = 0. |
---|
354 | radsol(1) = 0. |
---|
355 | |
---|
356 | radpas = NINT(1.*day_step/nbapp_rad) |
---|
357 | soil_model = .true. |
---|
358 | |
---|
359 | call phyredem("startphy.nc") |
---|
360 | |
---|
361 | c deallocation des variables phyredem |
---|
362 | c ----------------------------------- |
---|
363 | call phys_state_var_end |
---|
364 | |
---|
365 | c======================================================================= |
---|
366 | c BOUCLE TEMPORELLE DU MODELE 1D |
---|
367 | c======================================================================= |
---|
368 | c |
---|
369 | firstcall=.true. |
---|
370 | lastcall=.false. |
---|
371 | |
---|
372 | DO idt=1,ndt |
---|
373 | IF (idt.eq.ndt) then |
---|
374 | lastcall=.true. |
---|
375 | c toujours nulle dans le cas de Venus, pour l'instant... |
---|
376 | zls = 0.0 |
---|
377 | c write(103,*) 'Ls=',zls*180./pi |
---|
378 | c write(103,*) 'Lat=', lati(1) |
---|
379 | c write(103,*) 'RunEnd - Atmos. Temp. File' |
---|
380 | c write(103,*) 'RunEnd - Atmos. Temp. File' |
---|
381 | c write(104,*) 'Ls=',zls*180./pi |
---|
382 | c write(104,*) 'Lat=', lati(1) |
---|
383 | c write(104,*) 'RunEnd - Atmos. Temp. File' |
---|
384 | ENDIF |
---|
385 | |
---|
386 | c calcul du geopotentiel |
---|
387 | c ~~~~~~~~~~~~~~~~~~~~~ |
---|
388 | ! ADAPTATION GCM POUR CP(T) |
---|
389 | DO ilayer=1,nlayer |
---|
390 | s(ilayer)=(play(ilayer)/psurf)**rcp |
---|
391 | ENDDO |
---|
392 | phi(1)=cpp*temp(1)*(1.E+0-s(1)) |
---|
393 | DO ilayer=2,nlayer |
---|
394 | phi(ilayer)=phi(ilayer-1)+ |
---|
395 | & cpp*(temp(ilayer-1)/s(ilayer-1)+temp(ilayer)/s(ilayer))*0.5 |
---|
396 | & *(s(ilayer-1)-s(ilayer)) |
---|
397 | |
---|
398 | ENDDO |
---|
399 | |
---|
400 | c appel de la physique |
---|
401 | c -------------------- |
---|
402 | |
---|
403 | CALL physiq (1,llm,nqtot, |
---|
404 | , firstcall,lastcall, |
---|
405 | , day,time,dtphys, |
---|
406 | , plev,play,pk,phi,phisfi, |
---|
407 | , presnivs, |
---|
408 | , u,v,temp,q, |
---|
409 | , plev,temp, ! "planetary mean" plev and temperature |
---|
410 | , w, |
---|
411 | C - sorties |
---|
412 | s du,dv,dtemp,dq,dpsurf) |
---|
413 | |
---|
414 | c calcul de rho |
---|
415 | rho = 0. |
---|
416 | c print*,rho |
---|
417 | |
---|
418 | |
---|
419 | c print*,"DT APRES PHYSIQ=",day,time,dtime |
---|
420 | c print*,dtemp |
---|
421 | c print*,temp |
---|
422 | c print*," " |
---|
423 | c stop |
---|
424 | |
---|
425 | c evolution du vent : modele 1D |
---|
426 | c ----------------------------- |
---|
427 | |
---|
428 | c la physique calcule les derivees temporelles de u et v. |
---|
429 | c Pas de coriolis |
---|
430 | DO ilayer=1,nlayer |
---|
431 | du(ilayer)=du(ilayer)+ (gru-u(ilayer))/1.e4 |
---|
432 | dv(ilayer)=dv(ilayer)+ (grv-v(ilayer))/1.e4 |
---|
433 | ENDDO |
---|
434 | c |
---|
435 | c Calcul du temps au pas de temps suivant |
---|
436 | c --------------------------------------- |
---|
437 | firstcall=.false. |
---|
438 | time=time+dtphys/daysec |
---|
439 | IF (time.gt.1.E+0) then |
---|
440 | time=time-1.E+0 |
---|
441 | day=day+1 |
---|
442 | ENDIF |
---|
443 | |
---|
444 | c calcul des vitesses et temperature au pas de temps suivant |
---|
445 | c ---------------------------------------------------------- |
---|
446 | |
---|
447 | DO ilayer=1,nlayer |
---|
448 | u(ilayer)=u(ilayer)+dtphys*du(ilayer) |
---|
449 | v(ilayer)=v(ilayer)+dtphys*dv(ilayer) |
---|
450 | temp(ilayer)=temp(ilayer)+dtphys*dtemp(ilayer) |
---|
451 | ENDDO |
---|
452 | |
---|
453 | c calcul des traceurs au pas de temps suivant |
---|
454 | c ------------------------------------------- |
---|
455 | if (iflag_trac.eq.1) then |
---|
456 | DO iq=1,nqtot |
---|
457 | DO ilayer=1,nlayer |
---|
458 | q(ilayer,iq)=q(ilayer,iq)+dq(ilayer,iq)*dtphys |
---|
459 | ENDDO |
---|
460 | ENDDO |
---|
461 | endif |
---|
462 | |
---|
463 | c calcul des pressions au pas de temps suivant |
---|
464 | c -------------------------------------------- |
---|
465 | |
---|
466 | psurf=psurf+dtphys*dpsurf(1) ! evolution de la pression de surface |
---|
467 | DO ilevel=1,nlevel |
---|
468 | plev(ilevel)=ap(ilevel)+psurf*bp(ilevel) |
---|
469 | ENDDO |
---|
470 | DO ilayer=1,nlayer |
---|
471 | play(ilayer)=aps(ilayer)+psurf*bps(ilayer) |
---|
472 | ENDDO |
---|
473 | |
---|
474 | ENDDO ! fin de la boucle temporelle |
---|
475 | |
---|
476 | c ======================================================== |
---|
477 | c GESTION DES SORTIE |
---|
478 | c ======================================================== |
---|
479 | |
---|
480 | print*,"Temperature finale:" |
---|
481 | print*,temp |
---|
482 | |
---|
483 | c stabilite |
---|
484 | DO ilayer=1,nlayer |
---|
485 | zlay(ilayer) = phi(ilayer)/g/1000. !en km |
---|
486 | ENDDO |
---|
487 | DO ilayer=2,nlayer |
---|
488 | tmp1(ilayer) = |
---|
489 | . (temp(ilayer)-temp(ilayer-1))/(zlay(ilayer)-zlay(ilayer-1)) |
---|
490 | . + 1000.*g/cpp |
---|
491 | ENDDO |
---|
492 | |
---|
493 | OPEN(11,file='profile.new') |
---|
494 | DO ilayer=1,nlayer |
---|
495 | write (11,*) zlay(ilayer),temp(ilayer),tmp1(ilayer) |
---|
496 | ENDDO |
---|
497 | |
---|
498 | c ======================================================== |
---|
499 | END |
---|
500 | |
---|
501 | c*********************************************************************** |
---|
502 | c*********************************************************************** |
---|
503 | |
---|
504 | !#include "../dyn3d_common/disvert_noterre.F" |
---|
505 | !#include "../dyn3d/abort_gcm.F" |
---|
506 | |
---|