/*
 * attenuation() - compute attenuation of microstrip
 */
void MICROSTRIP::attenuation()
{
    skindepth = skin_depth();

    atten_cond = conductor_losses() * l;
    atten_dielectric = dielectric_losses() * l;
}
Beispiel #2
0
/* 
 * attenuation() - compute attenuation of microstrip
 */
void microstrip::attenuation()
{
  skindepth = skin_depth();

  atten_cond = conductor_losses() * l;
  atten_dielectric = dielectric_losses() * l;
}