You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Re-ordered the existing AeoLiS simulation examples
The examples by deVries2023 are merged with the other existing examples and a new README file is added, covering all available examples.
* Updated plotting functions with improved documentation
* Add files via upload
index of fraction, only used when the results has multiple dimensions ( >=4 )
32
32
params :
33
-
string or list of strings describing the name of the parameter for plotting
33
+
string or list of strings describing the name of the parameter for plotting'
34
+
the parameters that can be plotted are defined in the AeoLiS input file.
34
35
35
36
Returns
36
37
-------
37
-
figs/ axs?
38
+
figs/ ax
38
39
...
39
40
40
41
Examples
41
42
--------
42
-
>>> ploted(parse_value('T'))
43
-
bool
43
+
>>> plot1d(ncfile, itransects=0, itimes=0, ifrac=0, params='zb') # plot the bed level for the first transect and timestep 0
44
+
>>> plot1d(ncfile, itransects=0, itimes=-1, ifrac=0, params=['zb', 'Hs']) # plot the bed level and wave height for the first transect and last timestep
Boolean for indicating plotting difference between timesteps or the actual value
104
105
itimeDelta : integer
105
106
index for the starting timestep in the netcdf-file when merging, only used when delta == Bool
106
-
quiver?
107
107
108
108
Returns
109
109
-------
110
-
figs/ axs?
110
+
figs/ ax
111
111
...
112
112
113
113
Examples
114
114
--------
115
-
>>> ploted(parse_value('T'))
116
-
bool
115
+
>>> plot2d(ncfile, itimes=0, ifrac=0, param='zb') # plot the bed level for True first timestep
116
+
>>> plot2d(ncfile, itimes=-1, ifrac=0, param='zb', cmap=plt.cm.jet, clim='auto', delta=False, itimeDelta=0) # plot the bed level difference for the first timestep
0 commit comments