-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplot_all_n_fun.py
63 lines (47 loc) · 1.89 KB
/
plot_all_n_fun.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import sys
import os
import datetime
begin = datetime.datetime.now()
print(datetime.datetime.now())
print('Ploting Mycorrhizal uptake...')
os.system('python scripts_n_fun/01_plot_pactive.py')
print('Done! Look for PACTIVE.png')
print('Ploting Direct root uptake...')
os.system('python scripts_n_fun/02_plot_pnonmyc.py')
print('Done! Look for PNONMYC.png')
print('Ploting Retranslocation...')
os.system('python scripts_n_fun/03_plot_pretrans.py')
print('Done! Look for PRETRANS.png')
print('Ploting AM root uptake...')
os.system('python scripts_n_fun/04_plot_pam.py')
print('Done! Look for PAM.png')
print('Ploting ECM root uptake...')
os.system('python scripts_n_fun/05_plot_pecm.py')
print('Done! Look for PECM.png')
print('Ploting PRetrans ratio...')
os.system('python scripts_n_fun/06_plot_pretrans_ratio.py')
print('Done! Look for PRETRANS_ratio.png')
print('Ploting Zonal mean total...')
os.system('python scripts_n_fun/07_plot_zonal_mean_total.py')
print('Done! Look for PUPTAKE_zonal_mean.png')
print('Ploting Zonal mean total...')
os.system('python scripts_n_fun/08_plot_zonal_mean_ratio.py')
print('Done! Look for PUPTAKE_zonal_mean_ratio.png')
print('Ploting Monthly means per PFT...')
os.system('python scripts_n_fun/09_plot_monthly_mean.py')
print('Done! Look for PUPTAKE_monthly_mean_PFT_names.png ')
print('Ploting Carbon use total...')
os.system('python scripts_n_fun/10_plot_carbon_use_pft.py')
print('Done! Look for COST_PUPTAKE_zonal_pft.png')
print('Ploting zonal NPP...')
os.system('python scripts_n_fun/11_plot_zonal_mean_npp.py')
print('Done! Look for NPP_zonal_mean.png')
print('Ploting NFIX...')
os.system('python scripts_n_fun/12_plot_nfix.py')
print('Done! Look for NFIX.png')
print('Ploting NFIX...')
os.system('python scripts_n_fun/13_plot_puptake_npp_ratio.py')
print('Done! Look for NFIX.png')
print('This took this time to finish:')
print(datetime.datetime.now() - begin)
print('Done!')