#! /usr/bin/gawk -f # Last edited on 2017-04-23 01:37:13 by jstolfi function fill_ethanol_solubility_table_CuCl2() \ { # Fills the global table {g_e} with ethanol solubility (g in 100 g) # of "CuCl2" (sodium hydroxide). g_e["CuCl2", 0] = 42.3; g_e["CuCl2", 20] = 50.0; g_e["CuCl2", 40] = 58.3; g_e["CuCl2", 60] = 70.8; # [WP] has g_e["CuCl2",15] = 53.0. Maybe it was 25 C instead. }