Figure 5.24:

Dimensionless CO_2 production rate versus a single dimensionless gas-phase concentration.

Figure 5.24

Code for Figure 5.24

Text of the GNU GPL.

main.py


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
# Converted from CO2d.m
import numpy as np
from misc import save_ascii

x = np.logspace(-3, 4, 100)
y = np.column_stack([
    x/(2+x)**2,
    np.sqrt(x)/(2+np.sqrt(x))**2
])
table = np.column_stack([x, y])
save_ascii('CO2d.dat', table)