Skip to content

Commit

Permalink
refactor: try example for entire bubble domain
Browse files Browse the repository at this point in the history
  • Loading branch information
yoctoyotta1024 committed Sep 20, 2024
1 parent 23985b3 commit 8be8639
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions examples/bubble3d/bubble3d_inputfiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,13 @@ def main(
zgrid = get_zgrid(icon_grid_file, num_vertical_levels) # [m]
xgrid = [
0,
30000,
100000,
2500,
] # evenly spaced xhalf coords [m] # distance must match longitude in config file
ygrid = [
0,
12000,
6000,
20000,
5000,
] # evenly spaced xhalf coords [m] # distance must match latitudes in config file

### --- settings for initial superdroplets --- ###
Expand Down
14 changes: 7 additions & 7 deletions examples/bubble3d/src/config/bubble3d_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@
### SDM Runtime Parameters ###
domain:
nspacedims : 3 # no. of spatial dimensions to model
ngbxs : 576 # total number of Gbxs
maxnsupers: 576 # maximum number of SDs
ngbxs : 3840 # total number of Gbxs
maxnsupers: 3840 # maximum number of SDs

timesteps:
CONDTSTEP : 2 # time between SD condensation [s]
COLLTSTEP : 2 # time between SD collision [s]
MOTIONTSTEP : 3 # time between SDM motion [s]
MOTIONTSTEP : 5 # time between SDM motion [s]
COUPLTSTEP : 60 # time between dynamic couplings [s]
OBSTSTEP : 60 # time between SDM observations [s]
T_END : 7200 # time span of integration from 0s to T_END [s]
Expand All @@ -54,7 +54,7 @@ outputdata:

coupled_dynamics:
type: yac
lower_longitude: -0.9424777965
upper_longitude: 0.9424777965
lower_latitude: -0.392699082
upper_latitude: 0.392699082
lower_longitude: -3.29867229
upper_longitude: 2.98451302
lower_latitude: -1.2575
upper_latitude: 1.2575

0 comments on commit 8be8639

Please sign in to comment.