[85] | 1 | |
---|
| 2 | PS_Start, FILENAME='ustarmax.ps' |
---|
| 3 | !P.Charsize = 1.2 |
---|
| 4 | |
---|
| 5 | |
---|
| 6 | |
---|
| 7 | history_interval_s = 400. |
---|
| 8 | history_interval_s = 100. |
---|
| 9 | smoothampl=3700/history_interval_s |
---|
| 10 | smoothampl=0. ;; no smooth |
---|
| 11 | ;smoothampl=20. |
---|
| 12 | |
---|
| 13 | lev=1 |
---|
| 14 | |
---|
| 15 | |
---|
| 16 | ;restore, filename='REAL_50m_145_145_201_12km/case_A/addturb.dat' |
---|
| 17 | ;ustarmaxye = SMOOTH(TEMPORARY(ustarmax), [smoothampl], /EDGE_TRUNCATE) |
---|
| 18 | ;ustarmye = SMOOTH(TEMPORARY(ustarm), [smoothampl], /EDGE_TRUNCATE) |
---|
| 19 | ;plot, localtime, ustarmaxye, yrange=[0.0,1.0], xtickinterval=1., ytickinterval=0.1, ytitle='m/s', xtitle='Local time (h)' |
---|
| 20 | ;oplot, localtime, ustarmye |
---|
| 21 | |
---|
| 22 | restore, filename='REAL_50m_145_145_201_12km/case_B/addturb.dat' |
---|
| 23 | ustarmaxye = SMOOTH(TEMPORARY(ustarmax), [smoothampl], /EDGE_TRUNCATE) |
---|
| 24 | ustarmye = SMOOTH(TEMPORARY(ustarm), [smoothampl], /EDGE_TRUNCATE) |
---|
| 25 | plot, localtime, ustarmaxye, yrange=[0.0,1.2], xtickinterval=1., ytickinterval=0.1, ytitle='m/s', xtitle='Local time (h)' |
---|
| 26 | oplot, localtime, ustarmye |
---|
| 27 | |
---|
| 28 | restore, filename='REAL_50m_145_145_201_12km/case_C/addturb.dat' |
---|
| 29 | ustarmaxye = SMOOTH(TEMPORARY(ustarmax), [smoothampl], /EDGE_TRUNCATE) |
---|
| 30 | ustarmye = SMOOTH(TEMPORARY(ustarm), [smoothampl], /EDGE_TRUNCATE) |
---|
| 31 | oplot, localtime, ustarmaxye, linestyle=2 |
---|
| 32 | oplot, localtime, ustarmye, linestyle=2 |
---|
| 33 | |
---|
| 34 | ;restore, filename='REAL_50m_145_145_201_12km/case_I/addturb.dat' |
---|
| 35 | ;ustarmaxye = SMOOTH(TEMPORARY(ustarmax), [smoothampl], /EDGE_TRUNCATE) |
---|
| 36 | ;oplot, localtime, ustarmaxye, linestyle=3 |
---|
| 37 | |
---|
| 38 | ;restore, filename='REAL_50m_145_145_201_12km/case_HIGH/addturb.dat' |
---|
| 39 | ;ustarmaxye = SMOOTH(TEMPORARY(ustarmax), [smoothampl], /EDGE_TRUNCATE) |
---|
| 40 | ;oplot, localtime, ustarmaxye, linestyle=4 |
---|
| 41 | |
---|
| 42 | |
---|
| 43 | |
---|
| 44 | |
---|
| 45 | PS_END, /PNG |
---|