var fDesc=new Array();
fDesc[0] = "The Photovoltaik Plant Harmonic Calculator enables a very easy and fast way to calculate the harmonics caused by a PV Plant at common point of coupling.
Main features:
- Different inverter types.
- Different phase load.
- Grid voltage and the linked standards.
- Short circuit apparent power in point of common coupling.
- Total conncectable power in point of common coupling.
- Transformer apparent power.";
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 = '';
}
}