Skip to content

Commit

Permalink
peer review
Browse files Browse the repository at this point in the history
  • Loading branch information
Sven-J-Steinert committed Feb 22, 2024
1 parent 675207b commit b579223
Show file tree
Hide file tree
Showing 13 changed files with 47 additions and 39 deletions.
26 changes: 17 additions & 9 deletions A_ISRU_efficiency.ipynb

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions B_Transport_efficiency.ipynb

Large diffs are not rendered by default.

38 changes: 19 additions & 19 deletions C_Joined_model.ipynb

Large diffs are not rendered by default.

Binary file modified doc/img/ISRU_COST_GLOBAL.pdf
Binary file not shown.
Binary file modified doc/img/Total_Cost_NRHO_1_5.pdf
Binary file not shown.
Binary file modified doc/img/Total_Cost_NRHO_2_0.pdf
Binary file not shown.
Binary file modified doc/img/WAC_TIO2_COMBINED.pdf
Binary file not shown.
Binary file modified doc/img/WAC_TIO2_GLOBAL.pdf
Binary file not shown.
Binary file modified doc/img/dv_NRHO.pdf
Binary file not shown.
1 change: 0 additions & 1 deletion google8804e09482433867.html

This file was deleted.

7 changes: 4 additions & 3 deletions helper_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def read_im_values(im,value_divider):
return x


def plot_map(values,value_devider,value_label,Lat_range,Lon_range,labelsize=None,save=None,bw=False,dpi=200,mass=False,labels=None,cmap='viridis',interpolation=None,return_data=False,center_zero=False,i_steps=None,y_limit=None,silent=False):
def plot_map(values,value_devider,value_label,Lat_range,Lon_range,labelsize=None,save=None,bw=False,dpi=200,mass=False,labels=None,cmap='viridis',interpolation=None,return_data=False,center_zero=False,i_steps=None,y_limit=None,silent=False,gridcolor='gray'):

if not labelsize: labelsize = 20

Expand All @@ -130,6 +130,7 @@ def plot_map(values,value_devider,value_label,Lat_range,Lon_range,labelsize=None
plt.xticks(np.arange(Lon_min, Lon_max+1, Lon_max/4))
plt.yticks(np.arange(Lat_min, Lat_max+1, Lat_max/2))
ax.tick_params(axis='both', which='major', labelsize=labelsize)
ax.grid(True, color=gridcolor, linestyle='-', linewidth=0.5)

if not bw:
# create an axes on the right side of ax. The width of cax will be 2%
Expand Down Expand Up @@ -203,8 +204,8 @@ def plot_map(values,value_devider,value_label,Lat_range,Lon_range,labelsize=None
ax.set_ylabel('Latitude $\phi \ [\mathrm{deg}]$',fontsize=labelsize)

if y_limit:
ax.set_ylim(y_limit[0], y_limit[1])

ax.set_ylim(y_limit[0], y_limit[1])
if save: plt.savefig("doc/img/" + save, bbox_inches='tight',pad_inches = 0)

plt.show()
Expand Down
Binary file modified manuscript.pdf
Binary file not shown.
Binary file modified manuscript.zip
Binary file not shown.

0 comments on commit b579223

Please sign in to comment.