var fDesc=new Array();
fDesc[0] = "Analysis and Report Generation for PV Modules with PROFITEST PV
The software allows for:
evaluation, graphic representation, documentation and analysis of measurements conducted at PV solar modules, as well as their administration in an integrated customer and module database.
Read in measured characteristic curve values, as well as customer and module data from the PROFITEST PV
Graphic representation of the characteristic IU curve
- With calculated maximum power point MPP (Pmax)
- Comparison with the power curve
- Comparison with the TRMS curve
- Comparison with the STC curve
- Characteristic IU curve with display of the measuring points
Direct comparison of measured values with values obtained under STC and values for the reference module
Overview of characteristic IU curves for a given test series in a browser window
Export of measured values or results (e.g. XLS file)
Generation of a test report with characteristic curve
Generation of an analysis with error information
Online measurement: graphic representation of the characteristic curve and measured values (also suitable for continuous measurement)
Customer, module and system database
Online access to databases / data management in the PROFITEST PV";
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 = '';
}
}