#! /usr/bin/gawk -f # Last edited on 2017-02-24 05:45:00 by jstolfi function fill_water_solubility_table_CuCl2() \ { # Fills the global table {g_w} with water solubility (g in 100 g) # of "CuCl2" and "CuCl2(H2O)2" g_w["CuCl2", 0] = 69.2; # [WP] 70.6 g_w["CuCl2", 10] = 71.5; g_w["CuCl2", 20] = 74.5; g_w["CuCl2", 25] = 76.4; # [WP] 75.7 g_w["CuCl2", 30] = 78.3; g_w["CuCl2", 40] = 81.8; g_w["CuCl2", 50] = 85.5; g_w["CuCl2", 60] = 89.4; g_w["CuCl2", 80] = 98.0; g_w["CuCl2", 100] = 110.5; # [WP] 107.9 compute_g_w_hydrated("CuCl2", 2); }