AddLumpedElement

AddLumpedElement(CSX, name, direction, varargin)

Full definition:

function CSX = AddLumpedElement(CSX, name, direction, varargin)

Add a lumped element property to CSX with the given name. Remember to add at least one or more box primitive to any property.

arguments:

  • direction: 0,1,2 or ‘x’,’y’,’z’ for the orientation of the lumped element

optional arguments:

  • ‘R’, ‘C’, ‘L’: definition of the lumped element properties

  • ‘Caps’: 0 or 1 to (de)activate lumped element caps (1=default) If Caps are enable, a small PEC plate is added to each end of the lumped element to ensure contact to e.g a microstrip line

examples:

%lumped element capacitor in y-direction with 1pF
CSX = AddLumpedElement( CSX, 'Capacitor', 1, 'Caps', 1, 'C', 1e-12 );
CSX = AddBox( CSX, 'Capacitor', 0, [0 0 0], [10 10 10] );

See also AddMaterial, AddMetal, AddExcitation, AddProbe, AddDump, AddBox


author: Thorsten Liebig