#! /usr/bin/gawk -f # Last edited on 2017-04-24 03:29:43 by jstolfi function fill_water_solubility_table_Na2C2O4() \ { # Fills the global table {g_w} with water solubility (g in 100 g) # of "Na2C2O4" (sodium oxalate). g_w["Na2C2O4", 0] = 2.69; g_w["Na2C2O4", 10] = 3.19; # Interpolated -- Fix!! g_w["Na2C2O4", 20] = 3.70; g_w["Na2C2O4", 25] = 3.95; # Extrapolated -- Fix!! g_w["Na2C2O4", 40] = 4.20; # Interpolated by hand -- Fix!! g_w["Na2C2O4", 60] = 4.95; # Interpolated by hand -- Fix!! g_w["Na2C2O4", 80] = 5.70; # Interpolated by hand -- Fix!! g_w["Na2C2O4", 95] = 6.09; # Interpolated -- Fix!! g_w["Na2C2O4", 100] = 6.25; }