var fDesc=new Array();
fDesc[0] = "MixProps is a two phase vapor-liquid equilibrium, thermodynamic, and transport property calculator for technical professionals. Both pure and multicomponent systems are supported with a comprehensive collection of physical property methods.
Main Features:
- An intuitive user interface.
- Equations of state supported: RK, SRK, API-SRK, PR, PR-78.
- EOS binary interaction parameters use and specification is fully supported.
- Pure component data drawn from the extensive PhysProps data base.
- A full range of thermophysical and transport properties for each phase is generated.
- T-P Flash (isothermal) routine employed is extremely accurate and stable.
- Quality print-outs of generated data available.
- Saving cases and calculations for future reference.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}