#! /usr/bin/gawk -f # Last edited on 2017-04-24 03:31:44 by jstolfi function fill_ethanol_solubility_table_NaOH() \ { # Fills the global table {g_e} with ethanol solubility (g in 100 g) # of "NaOH" (sodium hydroxide). g_e["NaOH", 25] = 13.9; # [WP] g_e["NaOH", 28] = 17.3; # [RU] g_e["NaOH", 40] = 30.9; # Linear extrapolation -- Fix!! g_e["NaOH", 60] = 53.6; # Linear extrapolation -- Fix!! }