/* * cpwgap.cpp - coplanar waveguide gap class implementation * * Copyright (C) 2005, 2008 Stefan Jahn * * This is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this package; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, * Boston, MA 02110-1301, USA. * * $Id$ * */ #if HAVE_CONFIG_H # include #endif #include "component.h" #include "substrate.h" #include "cpwgap.h" using namespace qucs; cpwgap::cpwgap () : circuit (2) { type = CIR_CPWGAP; } void cpwgap::calcSP (nr_double_t frequency) { setMatrixS (ytos (calcMatrixY (frequency))); } matrix cpwgap::calcMatrixY (nr_double_t frequency) { nr_double_t W = getPropertyDouble ("W"); nr_double_t g = getPropertyDouble ("G"); substrate * subst = getSubstrate (); nr_double_t er = subst->getPropertyDouble ("er"); // calculate series capacitance er = (er + 1) / 2; nr_double_t p = g / 4 / W; nr_double_t C = 2 * E0 * er * W / pi * (p - std::sqrt (1 + p * p) + std::log ((1 + std::sqrt (1 + p * p)) / p)); // build Y-parameter matrix nr_complex_t y11 = nr_complex_t (0.0, 2.0 * pi * frequency * C); matrix y (2); y.set (0, 0, +y11); y.set (0, 1, -y11); y.set (1, 0, -y11); y.set (1, 1, +y11); return y; } void cpwgap::initDC (void) { allocMatrixMNA (); clearY (); } void cpwgap::calcAC (nr_double_t frequency) { setMatrixY (calcMatrixY (frequency)); } // properties PROP_REQ [] = { { "W", PROP_REAL, { 1e-3, PROP_NO_STR }, PROP_POS_RANGE }, { "G", PROP_REAL, { 5e-4, PROP_NO_STR }, PROP_POS_RANGE }, { "Subst", PROP_STR, { PROP_NO_VAL, "Subst1" }, PROP_NO_RANGE }, PROP_NO_PROP }; PROP_OPT [] = { { "S", PROP_REAL, { 1e-3, PROP_NO_STR }, PROP_POS_RANGE }, PROP_NO_PROP }; struct define_t cpwgap::cirdef = { "CGAP", 2, PROP_COMPONENT, PROP_NO_SUBSTRATE, PROP_LINEAR, PROP_DEF };