1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
# solvent name, molecular weight[g/mol], density[g/mL] (at 20 C)
solvents={
"meco2h":(60.052,1.0446),
"aceticacid":(60.052,1.0446),
"acetone":(58.079,0.7845),
"mecn":(41.052,0.7857),
"acetonitrile":(41.052,0.7857),
"benzene":(78.11,0.8765),
"1buoh":(74.12,0.8095),
"1butanol":(74.12,0.8095),
"2buoh":(74.12,0.8063),
"2butanol":(74.12,0.8063),
"2butanone":(72.11,0.7999),
"tbuoh":(74.12,0.7887),
"tbutylalcohol":(74.12,0.7887),
"ccl4":(153.82,1.594),
"carbontetrachloride":(153.82,1.594),
"phcl":(112.56,1.1058),
"chlorobenzene":(112.56,1.1058),
"chcl3":(119.38,1.4788),
"chloroform":(119.38,1.4788),
"cyclohexane":(84.16,0.7739),
"12dce":(98.96,1.245),
"12dichloroethane":(98.96,1.245),
"diethyleneglycol":(106.12,1.1197),
"et2o":(74.12,0.713),
"diethylether":(74.12,0.713),
"diglyme":(134.17,0.943),
"dme":(90.12,0.8637),
"12dimethoxyethane":(90.12,0.8637),
"dmf":(73.09,0.9445),
"dimethylformamide":(73.09,0.9445),
"dmso":(78.13,1.092),
"dimethylsulfoxide":(78.13,1.092),
"14dioxane":(88.11,1.033),
"etoh":(46.07,0.789),
"ethanol":(46.07,0.789),
"etoac":(88.11,0.895),
"acoet":(88.11,0.895),
"ethylacetate":(88.11,0.895),
"ethyleneglycol":(62.07,1.115),
"glycerin":(92.09,1.261),
"hmpa":(179.20,1.03),
"hexamethylphosphoramide":(179.20,1.03),
"hmpt":(163.20,0.898),
"hexamethylphosphoroustriamide":(163.20,0.898),
"hexane":(86.18,0.659),
"meoh":(32.04,0.791),
"methanol":(32.04,0.791),
"mtbe":(88.15,0.741),
"methyltbutylether":(88.15,0.741),
"ch2cl2":(84.93,1.326),
"methylenechloride":(84.93,1.326),
"dcm":(84.93,1.326),
"dichloromethane":(84.93,1.326),
"nmp":(99.13,1.033),
"nmethyl2pyrrolidinone":(99.13,1.033),
"meno2":(61.04,1.382),
"nitromethane":(61.04,1.382),
"pentane":(72.15,0.626),
"1propanol":(60.10,0.803),
"2propanol":(60.10,0.785),
"pyridine":(79.10,0.982),
"thf":(72.106,0.8833),
"tetrahydrofuran":(72.106,0.8833),
"toluene":(92.14,0.867),
"et3n":(101.19,0.728),
"triethylamine":(101.19,0.728),
"h2o":(18.02,0.998),
"water":(18.02,0.998),
"oxylene":(106.17,0.897),
"mxylene":(106.17,0.868),
"pxylene":(106.17,0.861)
}
|