15 lines
672 B
Python
15 lines
672 B
Python
# Specifications for calculations ############################################################
|
|
ref_EOS = 'jackettetal2004' # reference used to compute equ. of state
|
|
|
|
# plotting input #############################################################################
|
|
|
|
# General info about plotting
|
|
dir_plot = '/glusterfs/inspect/users/xg911182/Code/Python/plots_test/'
|
|
|
|
# variables used for lat-lon-plot and p-lat/p-lon crosssection plot
|
|
plot_var = {'rho':[]}
|
|
lonlat_reg = [25.0, 25.0+360.0, -90.0, 90.0] # plotting range for 2dmap
|
|
plot_2d = 1 # plot 2d fields (lat-lon)
|
|
plot_cs = 1 # plot crosssections
|
|
cs_plot = {'lon':[-47.5,172.5],'lat':[0]} # crosssections
|