|
Last change
on this file since 1111 was
85,
checked in by aslmd, 15 years ago
|
|
LMD_MM_MARS et LMD_LES_MARS: ajout des routines IDL pour tracer les sorties --> voir mesoscale/PLOT
|
|
File size:
343 bytes
|
| Line | |
|---|
| 1 | |
|---|
| 2 | ; |
|---|
| 3 | ; field1='U' |
|---|
| 4 | ; winds=['V','W'] |
|---|
| 5 | ; |
|---|
| 6 | |
|---|
| 7 | if ( (field1 eq 'U') $ |
|---|
| 8 | and (winds(0) eq 'V') $ |
|---|
| 9 | and (winds(1) eq 'W') ) then begin |
|---|
| 10 | |
|---|
| 11 | print, 'computing wind velocity' |
|---|
| 12 | |
|---|
| 13 | title='3D wind velocity (!NN!N.m!U-2!N)' |
|---|
| 14 | |
|---|
| 15 | u=what_I_plot |
|---|
| 16 | v=overvector_x |
|---|
| 17 | w=overvector_y |
|---|
| 18 | |
|---|
| 19 | velocity2=u^2+v^2+w^2 |
|---|
| 20 | what_I_plot=sqrt(velocity2) |
|---|
| 21 | |
|---|
| 22 | ;;overvector_x=0 |
|---|
| 23 | ;;overvector_y=0 |
|---|
| 24 | |
|---|
| 25 | endif |
|---|
Note: See
TracBrowser
for help on using the repository browser.