var fDesc=new Array();
fDesc[0] = "QuickSmith is a Smith Chart based linear circuit simulation program for Microsoft Windows. QuickSmith was designed to perform a rapid and efficient Smith Chart calculation. It uses the advantage of Windows environment to provide friendlier way to simulate Graphical RF designs.
Main Features :
- Ladder network, elements are loaded using drag drop method.
- Open and Save functions for schematic files
- Impedance matching
- Frequency/component sweep
- Load impedance interpolation/extrapolation for frequency dependent loads
- Q factors taken into account for network components
- Amplifier design/analysis using gain/noise circles
- Insertion loss and S21 graphs
- Transmission line parameter calculations
- Constant Conductance, VSWR and Q circles
- Import and Export of data files
- Help files with solved examples of network matching and amplifier design";
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 = '';
}
}