LCOV - code coverage report
Current view: top level - src/components - inductor.cpp (source / functions) Hit Total Coverage
Test: qucs-core-0.0.19 Code Coverage Lines: 48 60 80.0 %
Date: 2015-01-05 16:01:02 Functions: 8 11 72.7 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 28 52 53.8 %

           Branch data     Line data    Source code
       1                 :            : /*
       2                 :            :  * inductor.cpp - inductor class implementation
       3                 :            :  *
       4                 :            :  * Copyright (C) 2003, 2004, 2005, 2006, 2008 Stefan Jahn <stefan@lkcc.org>
       5                 :            :  *
       6                 :            :  * This is free software; you can redistribute it and/or modify
       7                 :            :  * it under the terms of the GNU General Public License as published by
       8                 :            :  * the Free Software Foundation; either version 2, or (at your option)
       9                 :            :  * any later version.
      10                 :            :  *
      11                 :            :  * This software is distributed in the hope that it will be useful,
      12                 :            :  * but WITHOUT ANY WARRANTY; without even the implied warranty of
      13                 :            :  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      14                 :            :  * GNU General Public License for more details.
      15                 :            :  *
      16                 :            :  * You should have received a copy of the GNU General Public License
      17                 :            :  * along with this package; see the file COPYING.  If not, write to
      18                 :            :  * the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
      19                 :            :  * Boston, MA 02110-1301, USA.
      20                 :            :  *
      21                 :            :  * $Id$
      22                 :            :  *
      23                 :            :  */
      24                 :            : 
      25                 :            : #if HAVE_CONFIG_H
      26                 :            : # include <config.h>
      27                 :            : #endif
      28                 :            : 
      29                 :            : #include "component.h"
      30                 :            : #include "inductor.h"
      31                 :            : 
      32                 :            : using namespace qucs;
      33                 :            : 
      34                 :         92 : inductor::inductor () : circuit (2) {
      35                 :         92 :   type = CIR_INDUCTOR;
      36                 :         92 :   setISource (true);
      37                 :         92 : }
      38                 :            : 
      39                 :      18823 : void inductor::calcSP (nr_double_t frequency) {
      40         [ +  - ]:      18823 :   nr_double_t l = getPropertyDouble ("L") / z0;
      41                 :      18823 :   nr_complex_t z = nr_complex_t (0, 2.0 * M_PI * frequency * l);
      42 [ +  - ][ +  - ]:      18823 :   setS (NODE_1, NODE_1, z / (z + 2.0));
      43 [ +  - ][ +  - ]:      18823 :   setS (NODE_2, NODE_2, z / (z + 2.0));
      44 [ +  - ][ +  - ]:      18823 :   setS (NODE_1, NODE_2, 2.0 / (z + 2.0));
      45 [ +  - ][ +  - ]:      18823 :   setS (NODE_2, NODE_1, 2.0 / (z + 2.0));
      46                 :      18823 : }
      47                 :            : 
      48                 :        718 : void inductor::initDC (void) {
      49                 :        718 :   setVoltageSources (1);
      50                 :        718 :   allocMatrixMNA ();
      51                 :        718 :   voltageSource (VSRC_1, NODE_1, NODE_2);
      52                 :        718 : }
      53                 :            : 
      54                 :       5106 : void inductor::calcDC (void) {
      55                 :       5106 :   clearY ();
      56                 :       5106 : }
      57                 :            : 
      58                 :         12 : void inductor::initAC (void) {
      59                 :         12 :   nr_double_t l = getPropertyDouble ("L");
      60                 :            : 
      61                 :            :   // for non-zero inductance usual MNA entries
      62         [ +  - ]:         12 :   if (l != 0.0) {
      63                 :         12 :     setVoltageSources (0);
      64                 :         12 :     allocMatrixMNA ();
      65                 :            :   }
      66                 :            :   // for zero inductance create a zero voltage source
      67                 :            :   else {
      68                 :          0 :     initDC ();
      69                 :          0 :     calcDC ();
      70                 :            :   }
      71                 :         12 : }
      72                 :            : 
      73                 :       1858 : void inductor::calcAC (nr_double_t frequency) {
      74                 :       1858 :   nr_double_t l = getPropertyDouble ("L");
      75                 :            : 
      76                 :            :   // for non-zero inductance usual MNA entries
      77         [ +  - ]:       1858 :   if (l != 0.0) {
      78                 :       1858 :     nr_complex_t y = nr_complex_t (0, -1 / (2.0 * M_PI * frequency * l));
      79 [ +  - ][ +  - ]:       1858 :     setY (NODE_1, NODE_1, +y); setY (NODE_2, NODE_2, +y);
      80 [ +  - ][ +  - ]:       1858 :     setY (NODE_1, NODE_2, -y); setY (NODE_2, NODE_1, -y);
      81                 :            :   }
      82                 :       1858 : }
      83                 :            : 
      84                 :         50 : void inductor::initTR (void) {
      85                 :         50 :   initDC ();
      86                 :         50 :   clearY ();
      87                 :         50 :   setStates (2);
      88                 :         50 : }
      89                 :            : 
      90                 :            : #define fState 0 // flux state
      91                 :            : #define vState 1 // voltage state
      92                 :            : 
      93                 :     208702 : void inductor::calcTR (nr_double_t) {
      94         [ +  - ]:     208702 :   nr_double_t l = getPropertyDouble ("L");
      95                 :            :   nr_double_t r, v;
      96         [ +  - ]:     208702 :   nr_double_t i = real (getJ (VSRC_1));
      97                 :            : 
      98                 :            :   /* apply initial condition if requested */
      99 [ +  + ][ +  - ]:     208702 :   if (getMode () == MODE_INIT && isPropertyGiven ("I")) {
         [ +  + ][ +  + ]
     100         [ +  - ]:         12 :     i = getPropertyDouble ("I");
     101                 :            :   }
     102                 :            : 
     103                 :     208702 :   setState (fState, i * l);
     104         [ +  - ]:     208702 :   integrate (fState, l, r, v);
     105         [ +  - ]:     208702 :   setD (VSRC_1, VSRC_1, -r);
     106         [ +  - ]:     208702 :   setE (VSRC_1, v);
     107                 :     208702 : }
     108                 :            : 
     109                 :          0 : void inductor::initHB (void) {
     110                 :          0 :   setVoltageSources (1);
     111                 :          0 :   setInternalVoltageSource (1);
     112                 :          0 :   allocMatrixMNA ();
     113                 :          0 :   voltageSource (VSRC_1, NODE_1, NODE_2);
     114                 :          0 : }
     115                 :            : 
     116                 :          0 : void inductor::calcHB (nr_double_t frequency) {
     117                 :          0 :   nr_double_t l = getPropertyDouble ("L");
     118         [ #  # ]:          0 :   setD (VSRC_1, VSRC_1, -l * 2 * M_PI * frequency);
     119                 :          0 : }
     120                 :            : 
     121                 :            : // properties
     122                 :            : PROP_REQ [] = {
     123                 :            :   { "L", PROP_REAL, { 1e-9, PROP_NO_STR }, PROP_NO_RANGE }, PROP_NO_PROP };
     124                 :            : PROP_OPT [] = {
     125                 :            :   { "I", PROP_REAL, { 0, PROP_NO_STR }, PROP_NO_RANGE }, PROP_NO_PROP };
     126                 :            : struct define_t inductor::cirdef =
     127                 :            :   { "L", 2, PROP_COMPONENT, PROP_NO_SUBSTRATE, PROP_LINEAR, PROP_DEF };

Generated by: LCOV version 1.11