Skip to content

Commit 97737e6

Browse files
committed
First attempt at integrating with copernicusmarine toolkit. Looks promising. To run on colab to see speed difference, and turn into a constructor!
1 parent 89b75bd commit 97737e6

2 files changed

Lines changed: 619 additions & 0 deletions

File tree

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
{
2+
"use_3D": true,
3+
"allow_time_extrapolation": false,
4+
"verbose_delete": false,
5+
"use_mixing": false,
6+
"use_biofouling": false,
7+
"use_stokes": false,
8+
"use_wind": false,
9+
"ocean": {
10+
"type": "copernicus_marine",
11+
"dataset_id": {"U" :"cmems_mod_glo_phy-cur_anfc_0.083deg_P1D-m",
12+
"V" :"cmems_mod_glo_phy-cur_anfc_0.083deg_P1D-m",
13+
"W" :"cmems_mod_glo_phy-wcur_anfc_0.083deg_P1D-m",
14+
"conservative_temperature": "cmems_mod_glo_phy-thetao_anfc_0.083deg_P1D-m",
15+
"absolute_salinity": "cmems_mod_glo_phy-so_anfc_0.083deg_P1D-m"},
16+
"variables": {"U": "uo",
17+
"V": "vo",
18+
"W": "wo",
19+
"conservative_temperature": "thetao",
20+
"absolute_salinity": "so"},
21+
"dimensions": {"lon": "longitude",
22+
"lat": "latitude",
23+
"depth": "depth",
24+
"time": "time"}
25+
},
26+
"bathymetry": { "type": "copernicus_marine",
27+
"dataset_id": {"bathymetry": "cmems_mod_glo_phy_anfc_0.083deg_static"},
28+
"variables": {"bathymetry": "deptho"},
29+
"dimensions": {"lon": "longitude",
30+
"lat": "latitude"}
31+
},
32+
"bgc": {
33+
"type": "copernicus_marine",
34+
"dataset_id": {"pp_phyto": "cmems_mod_glo_bgc-bio_anfc_0.25deg_P1D-m",
35+
"bio_nanophy": "cmems_mod_glo_bgc-pft_anfc_0.25deg_P1D-m",
36+
"bio_diatom": "cmems_mod_glo_bgc-plankton_anfc_0.25deg_P1D-m"},
37+
"variables": {
38+
"pp_phyto": "nppv",
39+
"bio_nanophy": "phyc",
40+
"bio_diatom": "zooc"
41+
},
42+
"dimensions": {"lon": "longitude",
43+
"lat": "latitude",
44+
"depth": "depth",
45+
"time": "time"},
46+
"constants": {
47+
"biofilm_density": 1388.0,
48+
"algae_cell_volume": 2e-16,
49+
"K": 1.3805834190672156e-23,
50+
"R20": 1.1574074074074074e-06,
51+
"Q10": 2.13,
52+
"Gamma": 2.0,
53+
"carbon_molecular_weight": 12.0,
54+
"collision_probability": 1.0,
55+
"algae_mortality_rate": 1.0,
56+
"algae_respiration_f": 1.0
57+
}
58+
},
59+
"stokes": {
60+
"type": "copernicus_marine",
61+
"dataset_id": {"Stokes_U": "cmems_mod_glo_wav_anfc_0.083deg_PT3H-i",
62+
"Stokes_V": "cmems_mod_glo_wav_anfc_0.083deg_PT3H-i",
63+
"wave_Tp": "cmems_mod_glo_wav_anfc_0.083deg_PT3H-i"},
64+
"variables": {
65+
"Stokes_U": "VSDX",
66+
"Stokes_V": "VSDY",
67+
"wave_Tp": "VTPK"
68+
},
69+
"dimensions": {"lon": "longitude",
70+
"lat": "latitude",
71+
"time": "time"}
72+
},
73+
"simulation": {
74+
"start_date": null,
75+
"runtime": null,
76+
"dt_write": null,
77+
"dt_timestep": null
78+
},
79+
"release_maps": {
80+
"coastal": "input_data/NEMO0083/coastal_population_MPW_NEMO0083.csv",
81+
"rivers": "input_data/NEMO0083/river_emissions_NEMO0083.csv",
82+
"fisheries": "input_data/NEMO0083/agg_data_fisheries_info_NEMO0083.csv",
83+
"global_concentrations": "input_data/NEMO0083/global_concentrations_NEMO0083.csv"
84+
}
85+
}

0 commit comments

Comments
 (0)