Skip to content

Commit ef51aee

Browse files
Richard Hofmeisterplatipodium
Richard Hofmeister
authored andcommitted
Initital git repo forked of SVN revision 5235
1 parent 57655d6 commit ef51aee

17 files changed

+3410
-0
lines changed

Plot/plot_bdyvelocity.py

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
from pylab import *
2+
import netCDF4
3+
4+
nc = netCDF4.Dataset('outputs/1_hvel.nc')
5+
ncv=nc.variables
6+
7+
ul = ncv['u'][:,-1,22]
8+
ur = ncv['u'][:,-1,42]
9+
10+
time = ncv['time'][:]/86400.
11+
12+
figure(figsize=(10,3))
13+
14+
plot(time,ul,'k-',lw=2.0,label='left')
15+
plot(time,ur,'-',lw=2.0,color='orange',label='right')
16+
ylabel('[m/s]')
17+
xlabel('days')
18+
legend()
19+
20+
show()
21+
nc.close()

Plot/plot_salinities.py

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
from pylab import *
2+
import netCDF4
3+
4+
runs = {}
5+
6+
runs['upwind'] = 'o001'
7+
runs['tvd'] = 'o002'
8+
runs['tvd 0.1*dt'] = 'o003'
9+
runs['tvd 10*dt'] = 'outputs'
10+
11+
lss = ['-','--',':','-.']
12+
13+
fig = figure(figsize=(8,5))
14+
15+
for label,folder in runs.iteritems():
16+
17+
nc = netCDF4.Dataset('%s/1_salt.nc'%folder)
18+
ncv=nc.variables
19+
20+
t = ncv['time'][:]
21+
y = ncv['y'][:]
22+
yidx = where(y==0.0)
23+
s = ncv['salt'][-1,-1][yidx]-35.
24+
x = ncv['x'][yidx]/1000.
25+
26+
27+
if label=='upwind':
28+
col = 'r'
29+
ls = '-'
30+
s0 = ncv['salt'][0,-1][yidx]-35.
31+
plot(x,s0,'-',lw=3.0,color=(0.6,0.6,0.6),label='initial condition')
32+
else:
33+
col = 'k'
34+
ls = lss.pop()
35+
36+
37+
plot(x,s,ls=ls,color=col,lw=2.0,label=label)
38+
39+
nc.close()
40+
41+
ylim(-0.1,1.1)
42+
ylabel('Tracer [1/1]')
43+
xlabel('km')
44+
legend(loc='upper left',frameon=False)
45+
46+
savefig('transport_comparison.pdf')
47+
show()

Plot/plot_timesteps.py

+116
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
from pylab import *
2+
import netCDF4
3+
import sys
4+
5+
runs = {}
6+
if len(sys.argv)>1:
7+
name = sys.argv[1]
8+
else:
9+
name='test'
10+
11+
if False:
12+
runs[5] = name+'_5s'
13+
runs[10] = name+'_10s'
14+
runs[25] = name+'_25s'
15+
runs[37] = name+'_37s'
16+
runs[50] = name+'_50s'
17+
runs[100] = name+'_100s'
18+
runs[200] = name+'_200s'
19+
else:
20+
runs[5] = name+'_5s'
21+
runs[10] = name+'_10s'
22+
runs[15] = name+'_15s'
23+
runs[20] = name+'_20s'
24+
runs[40] = name+'_40s'
25+
runs[80] = name+'_80s'
26+
runs[160] = name+'_160s'
27+
28+
refname='tvd_20m'
29+
30+
lss = ['-','--',':','-.','-..']
31+
tidx = 477
32+
33+
fig = figure(figsize=(8,5))
34+
tax=axes()
35+
vf = figure(figsize=(8,5))
36+
vax=axes()
37+
38+
keys = sorted(runs)
39+
40+
for dt in keys:
41+
folder = runs[dt]
42+
cfl = dt*10./200.
43+
#label = '%d s'%dt
44+
label = '%0.1f'%cfl
45+
print(folder)
46+
nc = netCDF4.Dataset('%s/outputs/1_salt.nc'%folder)
47+
ncv=nc.variables
48+
49+
t = ncv['time'][:]
50+
y = ncv['y'][:]
51+
yidx = where(y==0.0)
52+
s = ncv['salt'][tidx,-1][yidx]-35.
53+
x = ncv['x'][yidx]/1000.
54+
55+
vnc = netCDF4.Dataset('%s/outputs/1_hvel.nc'%folder)
56+
vncv = vnc.variables
57+
xidx=21+11
58+
v = vncv['u'][-25:,-1,xidx]
59+
vt = vncv['time'][-25:]
60+
hours = (vt-vt[0])/3600.
61+
62+
if label=='50 s':
63+
col = 'r'
64+
ls = '-'
65+
s0 = ncv['salt'][0,-1][yidx]-35.
66+
tax.plot(x,s0,'-',lw=3.0,color='orange',label='initial condition')
67+
else:
68+
col = (log(int(dt))/log(5)/3.-0.3)*ones((3))
69+
ls = '-'#lss.pop()
70+
71+
72+
tax.plot(x,s,ls=ls,color=col,lw=2.0,label=label)
73+
vax.plot(hours,v,ls=ls,color=col,lw=2.0,label=label)
74+
75+
nc.close()
76+
vnc.close()
77+
78+
# reference
79+
if True:
80+
nc = netCDF4.Dataset('%s/outputs/1_salt.nc'%refname)
81+
ncv=nc.variables
82+
83+
t = ncv['time'][:]
84+
y = ncv['y'][:]
85+
yidx = where(y==0.0)
86+
s = ncv['salt'][tidx,-1][yidx]-35.
87+
x = ncv['x'][yidx]/1000.
88+
89+
vnc = netCDF4.Dataset('%s/outputs/1_hvel.nc'%refname)
90+
vncv = vnc.variables
91+
tnum,znum,xnum = vncv['u'].shape
92+
xidx=xnum/3+xnum/6
93+
v = vncv['u'][-25:,-1,xidx]
94+
vt = vncv['time'][-25:]
95+
hours = (vt-vt[0])/3600.
96+
nc.close()
97+
vnc.close()
98+
99+
tax.plot(x,s,'-',lw=3.0,color='red',label='reference')
100+
vax.plot(hours,v,'-',color='red',lw=2.0,label='reference')
101+
102+
tax.set_ylim(-0.1,1.1)
103+
tax.set_ylabel('Tracer [1/1]')
104+
tax.set_xlabel('km')
105+
tax.legend(loc='upper left',frameon=False,ncol=2)
106+
107+
vax.set_ylim(-0.2,0.2)
108+
vax.set_ylabel('surface current [m/s]')
109+
vax.set_xlabel('time [h]')
110+
vax.legend(loc='upper left',frameon=False,ncol=2)
111+
112+
fig.savefig('transport_comparison_%s.pdf'%name)
113+
show(fig)
114+
115+
vf.savefig('velocity_comparison_%s.pdf'%name)
116+
show(vf)

Plot/plot_tracers.py

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
from pylab import *
2+
import netCDF4
3+
import sys
4+
5+
runs = {}
6+
if len(sys.argv)>1:
7+
name = sys.argv[1]
8+
else:
9+
name='test'
10+
11+
12+
runs[1000] = name+'_1000m'
13+
runs[500] = name+'_500m'
14+
runs[200] = name+'_200m'
15+
runs[100] = name+'_100m'
16+
runs[50] = name+'_50m'
17+
runs[20] = name+'_20m'
18+
19+
lss = ['-','--',':','-.','-..']
20+
tidx = 477
21+
22+
fig = figure(figsize=(8,5))
23+
24+
keys = sorted(runs)
25+
26+
for dx in keys:
27+
folder = runs[dx]
28+
label = '%d m'%dx
29+
30+
print(label)
31+
nc = netCDF4.Dataset('%s/outputs/1_salt.nc'%folder)
32+
ncv=nc.variables
33+
34+
t = ncv['time'][:]
35+
y = ncv['y'][:]
36+
yidx = where(y==0.0)
37+
s = ncv['salt'][tidx,-1][yidx]-35.
38+
x = ncv['x'][yidx]/1000.
39+
40+
41+
if label=='20 m':
42+
col = 'r'
43+
ls = '-'
44+
s0 = ncv['salt'][0,-1][yidx]-35.
45+
plot(x,s0,'-',lw=3.0,color='orange',label='initial condition')
46+
else:
47+
col = (log10(int(label[:-2]))/3.-0.2)*ones((3))
48+
ls = '-'#lss.pop()
49+
50+
51+
plot(x,s,ls=ls,color=col,lw=2.0,label=label)
52+
53+
nc.close()
54+
55+
ylim(-0.1,1.1)
56+
ylabel('Tracer [1/1]')
57+
xlabel('km')
58+
legend(loc='upper left',frameon=False)
59+
60+
savefig('transport_comparison_%s.pdf'%name)
61+
show()

0 commit comments

Comments
 (0)