diff options
author | Sunil Shetye | 2020-09-25 19:10:14 +0530 |
---|---|---|
committer | Sunil Shetye | 2021-04-11 21:23:03 +0530 |
commit | e31b1a24c3e3d36fc3ebbf2ef31111f56ca3eed3 (patch) | |
tree | 27b04e78042384c24886c715560a304f34d3f81f | |
parent | 677aa819943f3a097ae7b7b6ec2f007482ea350e (diff) | |
download | Common-Interface-Project-e31b1a24c3e3d36fc3ebbf2ef31111f56ca3eed3.tar.gz Common-Interface-Project-e31b1a24c3e3d36fc3ebbf2ef31111f56ca3eed3.tar.bz2 Common-Interface-Project-e31b1a24c3e3d36fc3ebbf2ef31111f56ca3eed3.zip |
setting displayProperties via api
6 files changed, 125 insertions, 61 deletions
diff --git a/blocks/eda-frontend/src/components/SchematicEditor/Helper/ComponentDrag.js b/blocks/eda-frontend/src/components/SchematicEditor/Helper/ComponentDrag.js index b66de100..b744d797 100644 --- a/blocks/eda-frontend/src/components/SchematicEditor/Helper/ComponentDrag.js +++ b/blocks/eda-frontend/src/components/SchematicEditor/Helper/ComponentDrag.js @@ -58,10 +58,10 @@ export default function LoadGrid (container, sidebar, outline) { mxCell.prototype.Pin = false // Parent component of a pin, default is null mxCell.prototype.ParentComponent = null - mxCell.prototype.symbol = null mxCell.prototype.node = null mxCell.prototype.CompObject = null mxCell.prototype.parameter_values = {} + mxCell.prototype.displayProperties = {} mxCell.prototype.sourceVertex = false mxCell.prototype.targetVertex = false mxCell.prototype.tarx = 0 @@ -254,10 +254,12 @@ export default function LoadGrid (container, sidebar, outline) { store.subscribe(() => { var id = store.getState().componentPropertiesReducer.id var parameter_values = store.getState().componentPropertiesReducer.parameter_values + var displayProperties = store.getState().componentPropertiesReducer.displayProperties var cellList = graph.getModel().cells var c = cellList[id] if (c !== undefined) { c.parameter_values = parameter_values + c.displayProperties = displayProperties } }) diff --git a/blocks/eda-frontend/src/components/SchematicEditor/Helper/SvgParser.js b/blocks/eda-frontend/src/components/SchematicEditor/Helper/SvgParser.js index 2d5e3890..996daf33 100644 --- a/blocks/eda-frontend/src/components/SchematicEditor/Helper/SvgParser.js +++ b/blocks/eda-frontend/src/components/SchematicEditor/Helper/SvgParser.js @@ -34,13 +34,15 @@ export function getSvgMetadata (graph, parent, evt, target, x, y, component) { v1.Component = true v1.CellType = 'Component' v1.block_id = component.id - v1.explicit_input_ports = component.initial_explicit_input_ports - v1.implicit_input_ports = component.initial_implicit_input_ports - v1.control_ports = component.initial_control_ports - v1.explicit_output_ports = component.initial_explicit_output_ports - v1.implicit_output_ports = component.initial_implicit_output_ports - v1.command_ports = component.initial_command_ports - v1.display_parameter = component.initial_display_parameter + v1.displayProperties = { + explicit_input_ports: component.initial_explicit_input_ports, + implicit_input_ports: component.initial_implicit_input_ports, + control_ports: component.initial_control_ports, + explicit_output_ports: component.initial_explicit_output_ports, + implicit_output_ports: component.initial_implicit_output_ports, + command_ports: component.initial_command_ports, + display_parameter: component.initial_display_parameter, + } let parameter_values = {}; for (let i = 0; i < 40; i++) { let p = getParameter(i) + '_value'; diff --git a/blocks/eda-frontend/src/redux/actions/componentPropertiesActions.js b/blocks/eda-frontend/src/redux/actions/componentPropertiesActions.js index 39e8f3ce..1de3d9aa 100644 --- a/blocks/eda-frontend/src/redux/actions/componentPropertiesActions.js +++ b/blocks/eda-frontend/src/redux/actions/componentPropertiesActions.js @@ -22,13 +22,23 @@ export const getCompProperties = (block) => (dispatch) => { // Actions for updating entered component properites on clicking set parameters export const setCompProperties = (id, parameter_values) => (dispatch) => { - dispatch({ - type: actions.SET_COMP_PROPERTIES, - payload: { - id: id, - parameter_values: parameter_values - } - }) + const url = 'setblockparameter' + const filtered_parameter_values = Object.fromEntries(Object.entries(parameter_values).filter(([k, v]) => v != null)) + const data = { block_id: id, ...filtered_parameter_values } + api.post(url, data) + .then( + (res) => { + dispatch({ + type: actions.SET_COMP_PROPERTIES, + payload: { + id: id, + parameter_values: parameter_values, + displayProperties: res.data + } + }) + } + ) + .catch((err) => { console.error(err) }) } // Handling hiding of compProperties sidebar diff --git a/blocks/eda-frontend/src/redux/reducers/componentPropertiesReducer.js b/blocks/eda-frontend/src/redux/reducers/componentPropertiesReducer.js index 701b54e8..a2c44304 100644 --- a/blocks/eda-frontend/src/redux/reducers/componentPropertiesReducer.js +++ b/blocks/eda-frontend/src/redux/reducers/componentPropertiesReducer.js @@ -5,7 +5,8 @@ const InitialState = { id: 0, parameter_values: {}, isPropertiesWindowOpen: false, - compProperties: {} + compProperties: {}, + displayProperties: {} } export default function (state = InitialState, action) { @@ -25,7 +26,8 @@ export default function (state = InitialState, action) { ...state, id: action.payload.id, parameter_values: action.payload.parameter_values, - isPropertiesWindowOpen: false + isPropertiesWindowOpen: false, + displayProperties: action.payload.displayProperties } } diff --git a/blocks/eda-frontend/src/static/gallery/AFFICH_Xcos_on_Cloud.png b/blocks/eda-frontend/src/static/gallery/AFFICH_Xcos_on_Cloud.png Binary files differnew file mode 100644 index 00000000..e9cb4394 --- /dev/null +++ b/blocks/eda-frontend/src/static/gallery/AFFICH_Xcos_on_Cloud.png diff --git a/blocks/eda-frontend/src/utils/GallerySchSample.js b/blocks/eda-frontend/src/utils/GallerySchSample.js index 768ddf47..8083ec3b 100644 --- a/blocks/eda-frontend/src/utils/GallerySchSample.js +++ b/blocks/eda-frontend/src/utils/GallerySchSample.js @@ -3,52 +3,100 @@ const GallerySchSample = [ { save_id: 'gallery0', - data_dump: '<mxGraphModel><root><mxCell id="0" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><Object as="properties"/></mxCell><mxCell id="1" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><Object as="properties"/></mxCell><mxCell value="V1
1" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="2" vertex="1" connectable="0" Component="1" CellType="Component" symbol="V" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="250" y="270" width="120" height="120" as="geometry"/><Object id="835" name="VSOURCE" svg_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A_thumbnail.svg" symbol_prefix="V" component_library="http://localhost/api/libraries/10/" description="Voltage source symbol for simulation only" data_link="~" full_name="V-VSOURCE-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="V1" NAME="VSOURCE" N1="" N2="" VALUE="1" EXTRA_EXPRESSION="" MODEL="" UNIT="V" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="3" vertex="1" Pin="1" pinType="Input" PinNumber="1" ConnectedNode="V1.1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="60" width="0.5" height="0.5" as="geometry"/><mxCell value="V1
1" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="2" vertex="1" connectable="0" Component="1" CellType="Component" symbol="V" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="250" y="270" width="120" height="120" as="geometry"/><Object id="835" name="VSOURCE" svg_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A_thumbnail.svg" symbol_prefix="V" component_library="http://localhost/api/libraries/10/" description="Voltage source symbol for simulation only" data_link="~" full_name="V-VSOURCE-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="V1" NAME="VSOURCE" N1="" N2="" VALUE="1" EXTRA_EXPRESSION="" MODEL="" UNIT="V" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="2" style="align=right;verticalAlign=bottom;rotation=0" id="4" vertex="1" Pin="1" pinType="Input" PinNumber="2" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="60" y="119" width="0.5" height="0.5" as="geometry"/><mxCell value="V1
1" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="2" vertex="1" connectable="0" Component="1" CellType="Component" symbol="V" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="250" y="270" width="120" height="120" as="geometry"/><Object id="835" name="VSOURCE" svg_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A_thumbnail.svg" symbol_prefix="V" component_library="http://localhost/api/libraries/10/" description="Voltage source symbol for simulation only" data_link="~" full_name="V-VSOURCE-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="V1" NAME="VSOURCE" N1="" N2="" VALUE="1" EXTRA_EXPRESSION="" MODEL="" UNIT="V" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="R1
1k" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="5" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="700" y="290" width="16" height="100" as="geometry"/><Object id="836" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/10/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R1" NAME="R" N1="" N2="" VALUE="1k" EXTRA_EXPRESSION="" MODEL="" UNIT="K" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="6" vertex="1" Pin="1" pinType="Output" PinNumber="1" ConnectedNode="V1.1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="8" width="0.5" height="0.5" as="geometry"/><mxCell value="R1
1k" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="5" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="700" y="290" width="16" height="100" as="geometry"/><Object id="836" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/10/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R1" NAME="R" N1="" N2="" VALUE="1k" EXTRA_EXPRESSION="" MODEL="" UNIT="K" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="2" style="align=right;verticalAlign=bottom;rotation=0" id="7" vertex="1" Pin="1" pinType="Output" PinNumber="2" ConnectedNode="R2.1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="8" y="99" width="0.5" height="0.5" as="geometry"/><mxCell value="R1
1k" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="5" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="700" y="290" width="16" height="100" as="geometry"/><Object id="836" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/10/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R1" NAME="R" N1="" N2="" VALUE="1k" EXTRA_EXPRESSION="" MODEL="" UNIT="K" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="R2
2k" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="8" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="700" y="430" width="16" height="100" as="geometry"><mxPoint x="-2" as="offset"/></mxGeometry><Object id="836" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/10/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R2" NAME="R" N1="" N2="" VALUE="2k" EXTRA_EXPRESSION="" MODEL="" UNIT="K" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="9" vertex="1" Pin="1" pinType="Output" PinNumber="1" ConnectedNode="R2.1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="8" width="0.5" height="0.5" as="geometry"/><mxCell value="R2
2k" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="8" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="700" y="430" width="16" height="100" as="geometry"><mxPoint x="-2" as="offset"/></mxGeometry><Object id="836" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/10/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R2" NAME="R" N1="" N2="" VALUE="2k" EXTRA_EXPRESSION="" MODEL="" UNIT="K" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="2" style="align=right;verticalAlign=bottom;rotation=0" id="10" vertex="1" Pin="1" pinType="Output" PinNumber="2" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="8" y="99" width="0.5" height="0.5" as="geometry"/><mxCell value="R2
2k" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="8" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="700" y="430" width="16" height="100" as="geometry"><mxPoint x="-2" as="offset"/></mxGeometry><Object id="836" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/10/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R2" NAME="R" N1="" N2="" VALUE="2k" EXTRA_EXPRESSION="" MODEL="" UNIT="K" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="V1.1" style="exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" id="11" edge="1" node="V1.1" sourceVertex="3" targetVertex="6" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" tarx="0" tary="0"><mxGeometry relative="1" as="geometry"><Array as="points"><mxPoint x="310" y="200"/><mxPoint x="708" y="200"/></Array></mxGeometry><Object as="properties"/></mxCell><mxCell value="GNDA" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="12" vertex="1" connectable="0" Component="1" CellType="Component" symbol="PWR" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="480" y="590" width="40" height="80" as="geometry"/><Object id="997" name="GNDA" svg_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A_thumbnail.svg" symbol_prefix="PWR" component_library="http://localhost/api/libraries/14/" description="Power symbol creates a global label with name "GNDA" , analog ground" data_link="" full_name="PWR-GNDA-1-A" keyword="power-flag" as="CompObject"><Array as="alternate_component"/></Object><Object NAME="GNDA" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="13" vertex="1" Pin="1" pinType="Output" PinNumber="1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="20" y="39" width="0.5" height="0.5" as="geometry"/><mxCell value="GNDA" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="12" vertex="1" connectable="0" Component="1" CellType="Component" symbol="PWR" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="480" y="590" width="40" height="80" as="geometry"/><Object id="997" name="GNDA" svg_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A_thumbnail.svg" symbol_prefix="PWR" component_library="http://localhost/api/libraries/14/" description="Power symbol creates a global label with name "GNDA" , analog ground" data_link="" full_name="PWR-GNDA-1-A" keyword="power-flag" as="CompObject"><Array as="alternate_component"/></Object><Object NAME="GNDA" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="0" style="exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" id="14" edge="1" node="0" sourceVertex="4" targetVertex="13" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" tarx="0" tary="0"><mxGeometry relative="1" as="geometry"><Array as="points"><mxPoint x="310" y="619"/></Array></mxGeometry><Object as="properties"/></mxCell><mxCell value="0" style="exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" id="16" edge="1" node="0" sourceVertex="10" targetVertex="13" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" tarx="0" tary="0"><mxGeometry relative="1" as="geometry"><Array as="points"><mxPoint x="710" y="640"/></Array></mxGeometry><Object as="properties"/></mxCell><mxCell value="R2.1" style="exitX=1;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" id="17" edge="1" node="R2.1" sourceVertex="9" targetVertex="7" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" tarx="0" tary="0"><mxGeometry relative="1" as="geometry"/><Object as="properties"/></mxCell></root></mxGraphModel>', - name: 'Voltage Divider', - description: 'A voltage divider is a simple circuit which turns a large voltage into a smaller one. Using just two series resistors and an input voltage.', - media: 'gallery0.png', + data_dump: ` +<mxGraphModel> + <root> + <mxCell id="0" CellType="This is where you say what the vertex is" Component="0" Pin="0" sourceVertex="0" targetVertex="0" tarx="0" tary="0"> + <Object as="parameter_values"/> + <Object as="displayProperties"/> + </mxCell> + <mxCell id="1" CellType="This is where you say what the vertex is" Component="0" Pin="0" sourceVertex="0" targetVertex="0" tarx="0" tary="0"> + <Object as="parameter_values"/> + <Object as="displayProperties"/> + </mxCell> + <mxCell value="CONST" style="CONST" id="2" vertex="1" connectable="0" Component="1" CellType="Component" block_id="186" Pin="0" sourceVertex="0" targetVertex="0" tarx="0" tary="0"> + <mxGeometry x="170" y="190" width="40" height="40" as="geometry"/> + <Object explicit_input_ports="0" implicit_input_ports="0" control_ports="0" explicit_output_ports="1" implicit_output_ports="0" command_ports="0" display_parameter="1" as="displayProperties"/> + <Object as="parameter_values"/> + </mxCell> + <mxCell value="0" style="ExplicitOutputPort" id="3" vertex="1" ParentComponent="2" CellType="This is where you say what the vertex is" Component="0" Pin="0" sourceVertex="0" targetVertex="0" tarx="0" tary="0"> + <mxGeometry x="1" y="0.5" width="0.8" height="0.8" relative="1" as="geometry"/> + <Object as="parameter_values"/> + <Object as="displayProperties"/> + </mxCell> + <mxCell value="CONST" style="CONST" id="4" vertex="1" connectable="0" Component="1" CellType="Component" block_id="186" Pin="0" sourceVertex="0" targetVertex="0" tarx="0" tary="0"> + <mxGeometry x="170" y="190" width="40" height="40" as="geometry"/> + <Object explicit_input_ports="0" implicit_input_ports="0" control_ports="0" explicit_output_ports="1" implicit_output_ports="0" command_ports="0" display_parameter="1" as="displayProperties"/> + <Object as="parameter_values"/> + </mxCell> + <mxCell value="0" style="ExplicitOutputPort" id="5" vertex="1" ParentComponent="4" CellType="This is where you say what the vertex is" Component="0" Pin="0" sourceVertex="0" targetVertex="0" tarx="0" tary="0"> + <mxGeometry x="1" y="0.5" width="0.8" height="0.8" relative="1" as="geometry"/> + <Object as="parameter_values"/> + <Object as="displayProperties"/> + </mxCell> + <mxCell value="CONST" style="CONST" id="6" vertex="1" connectable="0" Component="1" CellType="Component" block_id="186" Pin="0" sourceVertex="0" targetVertex="0" tarx="0" tary="0"> + <mxGeometry x="170" y="190" width="40" height="40" as="geometry"/> + <Object explicit_input_ports="0" implicit_input_ports="0" control_ports="0" explicit_output_ports="1" implicit_output_ports="0" command_ports="0" display_parameter="1" as="displayProperties"/> + <Object as="parameter_values"/> + </mxCell> + <mxCell value="0" style="ExplicitOutputPort" id="7" vertex="1" ParentComponent="6" CellType="This is where you say what the vertex is" Component="0" Pin="0" sourceVertex="0" targetVertex="0" tarx="0" tary="0"> + <mxGeometry x="1" y="0.5" width="0.8" height="0.8" relative="1" as="geometry"/> + <Object as="parameter_values"/> + <Object as="displayProperties"/> + </mxCell> + <mxCell value="CONST" style="CONST" id="8" vertex="1" connectable="0" Component="1" CellType="Component" block_id="186" Pin="0" sourceVertex="0" targetVertex="0" tarx="0" tary="0"> + <mxGeometry x="170" y="190" width="40" height="40" as="geometry"/> + <Object explicit_input_ports="0" implicit_input_ports="0" control_ports="0" explicit_output_ports="1" implicit_output_ports="0" command_ports="0" display_parameter="1" as="displayProperties"/> + <Object as="parameter_values"/> + </mxCell> + <mxCell value="0" style="ExplicitOutputPort" id="9" vertex="1" ParentComponent="8" CellType="This is where you say what the vertex is" Component="0" Pin="0" sourceVertex="0" targetVertex="0" tarx="0" tary="0"> + <mxGeometry x="1" y="0.5" width="0.8" height="0.8" relative="1" as="geometry"/> + <Object as="parameter_values"/> + <Object as="displayProperties"/> + </mxCell> + <mxCell value="AFFICH_m" style="AFFICH_m" id="10" vertex="1" connectable="0" Component="1" CellType="Component" block_id="166" Pin="0" sourceVertex="0" targetVertex="0" tarx="0" tary="0"> + <mxGeometry x="430" y="190" width="60" height="40" as="geometry"/> + <Object explicit_input_ports="1" implicit_input_ports="0" control_ports="1" explicit_output_ports="0" implicit_output_ports="0" command_ports="0" display_parameter="0.0" as="displayProperties"/> + <Object as="parameter_values"/> + </mxCell> + <mxCell value="0" style="ExplicitInputPort" id="11" vertex="1" ParentComponent="10" CellType="This is where you say what the vertex is" Component="0" Pin="0" sourceVertex="0" targetVertex="0" tarx="0" tary="0"> + <mxGeometry y="0.5" width="0.8" height="0.8" relative="1" as="geometry"/> + <Object as="parameter_values"/> + <Object as="displayProperties"/> + </mxCell> + <mxCell value="0" style="ControlPort" id="12" vertex="1" ParentComponent="10" CellType="This is where you say what the vertex is" Component="0" Pin="0" sourceVertex="0" targetVertex="0" tarx="0" tary="0"> + <mxGeometry x="0.5" width="0.8" height="0.8" relative="1" as="geometry"/> + <Object as="parameter_values"/> + <Object as="displayProperties"/> + </mxCell> + <mxCell value="CLOCK_c" style="CLOCK_c" id="13" vertex="1" connectable="0" Component="1" CellType="Component" block_id="185" Pin="0" sourceVertex="0" targetVertex="0" tarx="0" tary="0"> + <mxGeometry x="440" y="60" width="40" height="40" as="geometry"/> + <Object explicit_input_ports="0" implicit_input_ports="0" control_ports="0" explicit_output_ports="0" implicit_output_ports="0" command_ports="1" display_parameter="" as="displayProperties"/> + <Object p000_value="0.1" p001_value="0.1" as="parameter_values"/> + </mxCell> + <mxCell value="0" style="CommandPort" id="14" vertex="1" ParentComponent="13" CellType="This is where you say what the vertex is" Component="0" Pin="0" sourceVertex="0" targetVertex="0" tarx="0" tary="0"> + <mxGeometry x="0.5" y="1" width="0.8" height="0.8" relative="1" as="geometry"/> + <Object as="parameter_values"/> + <Object as="displayProperties"/> + </mxCell> + <mxCell id="15" edge="1" node=".0" sourceVertex="14" targetVertex="12" CellType="This is where you say what the vertex is" Component="0" Pin="0" tarx="0" tary="0"> + <mxGeometry relative="1" as="geometry"/> + <Object as="parameter_values"/> + <Object as="displayProperties"/> + </mxCell> + <mxCell id="17" edge="1" node=".0" sourceVertex="9" targetVertex="11" CellType="This is where you say what the vertex is" Component="0" Pin="0" tarx="0" tary="0"> + <mxGeometry relative="1" as="geometry"/> + <Object as="parameter_values"/> + <Object as="displayProperties"/> + </mxCell> + </root> +</mxGraphModel> + `, + name: 'AFFICH', + description: 'A simple AFFICH diagram', + media: 'AFFICH_Xcos_on_Cloud.png', shared: true }, - { - save_id: 'gallery1', - data_dump: '<mxGraphModel><root><mxCell id="0" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><Object as="properties"/></mxCell><mxCell id="1" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><Object as="properties"/></mxCell><mxCell value="V1
pwl(0m 0 0.5m 5 50m 5 50.5m 0 100m 0)" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="2" vertex="1" connectable="0" Component="1" CellType="Component" symbol="V" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="260" y="260" width="120" height="120" as="geometry"/><Object id="835" name="VSOURCE" svg_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A_thumbnail.svg" symbol_prefix="V" component_library="http://localhost/api/libraries/10/" description="Voltage source symbol for simulation only" data_link="~" full_name="V-VSOURCE-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="V1" NAME="VSOURCE" N1="" N2="" VALUE="pwl(0m 0 0.5m 5 50m 5 50.5m 0 100m 0)" EXTRA_EXPRESSION="" MODEL="" UNIT="V" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="3" vertex="1" Pin="1" pinType="Input" PinNumber="1" ConnectedNode="V1.1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="60" width="0.5" height="0.5" as="geometry"/><mxCell value="V1
pwl(0m 0 0.5m 5 50m 5 50.5m 0 100m 0)" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="2" vertex="1" connectable="0" Component="1" CellType="Component" symbol="V" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="260" y="260" width="120" height="120" as="geometry"/><Object id="835" name="VSOURCE" svg_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A_thumbnail.svg" symbol_prefix="V" component_library="http://localhost/api/libraries/10/" description="Voltage source symbol for simulation only" data_link="~" full_name="V-VSOURCE-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="V1" NAME="VSOURCE" N1="" N2="" VALUE="pwl(0m 0 0.5m 5 50m 5 50.5m 0 100m 0)" EXTRA_EXPRESSION="" MODEL="" UNIT="V" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="2" style="align=right;verticalAlign=bottom;rotation=0" id="4" vertex="1" Pin="1" pinType="Input" PinNumber="2" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="60" y="119" width="0.5" height="0.5" as="geometry"/><mxCell value="V1
pwl(0m 0 0.5m 5 50m 5 50.5m 0 100m 0)" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="2" vertex="1" connectable="0" Component="1" CellType="Component" symbol="V" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="260" y="260" width="120" height="120" as="geometry"/><Object id="835" name="VSOURCE" svg_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A_thumbnail.svg" symbol_prefix="V" component_library="http://localhost/api/libraries/10/" description="Voltage source symbol for simulation only" data_link="~" full_name="V-VSOURCE-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="V1" NAME="VSOURCE" N1="" N2="" VALUE="pwl(0m 0 0.5m 5 50m 5 50.5m 0 100m 0)" EXTRA_EXPRESSION="" MODEL="" UNIT="V" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="R1
1k" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="5" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="710" y="270" width="16" height="100" as="geometry"/><Object id="836" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/10/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R1" NAME="R" N1="" N2="" VALUE="1k" EXTRA_EXPRESSION="" MODEL="" UNIT="K" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="6" vertex="1" Pin="1" pinType="Output" PinNumber="1" ConnectedNode="V1.1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="8" width="0.5" height="0.5" as="geometry"/><mxCell value="R1
1k" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="5" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="710" y="270" width="16" height="100" as="geometry"/><Object id="836" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/10/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R1" NAME="R" N1="" N2="" VALUE="1k" EXTRA_EXPRESSION="" MODEL="" UNIT="K" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="2" style="align=right;verticalAlign=bottom;rotation=0" id="7" vertex="1" Pin="1" pinType="Output" PinNumber="2" ConnectedNode="R1.2" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="8" y="99" width="0.5" height="0.5" as="geometry"/><mxCell value="R1
1k" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="5" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="710" y="270" width="16" height="100" as="geometry"/><Object id="836" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/10/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R1" NAME="R" N1="" N2="" VALUE="1k" EXTRA_EXPRESSION="" MODEL="" UNIT="K" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="C1
10u" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="8" vertex="1" connectable="0" Component="1" CellType="Component" symbol="C" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="688" y="420" width="60" height="100" as="geometry"/><Object id="834" name="CAP" svg_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A_thumbnail.svg" symbol_prefix="C" component_library="http://localhost/api/libraries/10/" description="Capacitor symbol for simulation only" data_link="~" full_name="C-CAP-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="C1" NAME="CAP" N1="" N2="" VALUE="10u" EXTRA_EXPRESSION="" MODEL="" UNIT="F" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="9" vertex="1" Pin="1" pinType="Output" PinNumber="1" ConnectedNode="R1.2" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="30" width="0.5" height="0.5" as="geometry"/><mxCell value="C1
10u" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="8" vertex="1" connectable="0" Component="1" CellType="Component" symbol="C" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="688" y="420" width="60" height="100" as="geometry"/><Object id="834" name="CAP" svg_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A_thumbnail.svg" symbol_prefix="C" component_library="http://localhost/api/libraries/10/" description="Capacitor symbol for simulation only" data_link="~" full_name="C-CAP-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="C1" NAME="CAP" N1="" N2="" VALUE="10u" EXTRA_EXPRESSION="" MODEL="" UNIT="F" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="2" style="align=right;verticalAlign=bottom;rotation=0" id="10" vertex="1" Pin="1" pinType="Output" PinNumber="2" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="30" y="99" width="0.5" height="0.5" as="geometry"/><mxCell value="C1
10u" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="8" vertex="1" connectable="0" Component="1" CellType="Component" symbol="C" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="688" y="420" width="60" height="100" as="geometry"/><Object id="834" name="CAP" svg_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A_thumbnail.svg" symbol_prefix="C" component_library="http://localhost/api/libraries/10/" description="Capacitor symbol for simulation only" data_link="~" full_name="C-CAP-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="C1" NAME="CAP" N1="" N2="" VALUE="10u" EXTRA_EXPRESSION="" MODEL="" UNIT="F" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="V1.1" style="exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" id="11" edge="1" node="V1.1" sourceVertex="3" targetVertex="6" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" tarx="0" tary="0"><mxGeometry relative="1" as="geometry"><Array as="points"><mxPoint x="320" y="160"/><mxPoint x="320" y="160"/></Array></mxGeometry><Object as="properties"/></mxCell><mxCell value="R1.2" style="exitX=1;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" id="12" edge="1" node="R1.2" sourceVertex="7" targetVertex="9" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" tarx="0" tary="0"><mxGeometry relative="1" as="geometry"/><Object as="properties"/></mxCell><mxCell value="GNDA" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="13" vertex="1" connectable="0" Component="1" CellType="Component" symbol="PWR" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="300" y="580" width="40" height="80" as="geometry"/><Object id="997" name="GNDA" svg_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A_thumbnail.svg" symbol_prefix="PWR" component_library="http://localhost/api/libraries/14/" description="Power symbol creates a global label with name "GNDA" , analog ground" data_link="" full_name="PWR-GNDA-1-A" keyword="power-flag" as="CompObject"><Array as="alternate_component"/></Object><Object NAME="GNDA" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="14" vertex="1" Pin="1" pinType="Output" PinNumber="1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="20" y="39" width="0.5" height="0.5" as="geometry"/><mxCell value="GNDA" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="13" vertex="1" connectable="0" Component="1" CellType="Component" symbol="PWR" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="300" y="580" width="40" height="80" as="geometry"/><Object id="997" name="GNDA" svg_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A_thumbnail.svg" symbol_prefix="PWR" component_library="http://localhost/api/libraries/14/" description="Power symbol creates a global label with name "GNDA" , analog ground" data_link="" full_name="PWR-GNDA-1-A" keyword="power-flag" as="CompObject"><Array as="alternate_component"/></Object><Object NAME="GNDA" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="GNDA" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="15" vertex="1" connectable="0" Component="1" CellType="Component" symbol="PWR" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="698" y="610" width="40" height="80" as="geometry"/><Object id="997" name="GNDA" svg_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A_thumbnail.svg" symbol_prefix="PWR" component_library="http://localhost/api/libraries/14/" description="Power symbol creates a global label with name "GNDA" , analog ground" data_link="" full_name="PWR-GNDA-1-A" keyword="power-flag" as="CompObject"><Array as="alternate_component"/></Object><Object NAME="GNDA" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="16" vertex="1" Pin="1" pinType="Output" PinNumber="1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="20" y="39" width="0.5" height="0.5" as="geometry"/><mxCell value="GNDA" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="15" vertex="1" connectable="0" Component="1" CellType="Component" symbol="PWR" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="698" y="610" width="40" height="80" as="geometry"/><Object id="997" name="GNDA" svg_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A_thumbnail.svg" symbol_prefix="PWR" component_library="http://localhost/api/libraries/14/" description="Power symbol creates a global label with name "GNDA" , analog ground" data_link="" full_name="PWR-GNDA-1-A" keyword="power-flag" as="CompObject"><Array as="alternate_component"/></Object><Object NAME="GNDA" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="0" style="exitX=1;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" id="17" edge="1" node="0" sourceVertex="10" targetVertex="16" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" tarx="0" tary="0"><mxGeometry relative="1" as="geometry"/><Object as="properties"/></mxCell><mxCell value="0" style="exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" id="18" edge="1" node="0" sourceVertex="4" targetVertex="14" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" tarx="0" tary="0"><mxGeometry relative="1" as="geometry"/><Object as="properties"/></mxCell></root></mxGraphModel>', - name: 'RC Circuit', - description: 'An RC circuit is a circuit with both a resistor (R) and a capacitor (C). RC circuits are freqent element in electronic devices.', - media: 'gallery1.png', - shared: true - }, - { - save_id: 'gallery2', - data_dump: '<mxGraphModel><root><mxCell id="0" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><Object as="properties"/></mxCell><mxCell id="1" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><Object as="properties"/></mxCell><mxCell value="V1
dc 0 PULSE (0 5 1u 1u 1u 1 1)" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="2" vertex="1" connectable="0" Component="1" CellType="Component" symbol="V" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="250" y="240.00000000000003" width="120" height="120" as="geometry"/><Object id="835" name="VSOURCE" svg_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A_thumbnail.svg" symbol_prefix="V" component_library="http://localhost/api/libraries/10/" description="Voltage source symbol for simulation only" data_link="~" full_name="V-VSOURCE-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="V1" NAME="VSOURCE" N1="" N2="" VALUE="dc 0 PULSE (0 5 1u 1u 1u 1 1)" EXTRA_EXPRESSION="" MODEL="" UNIT="V" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="3" vertex="1" Pin="1" pinType="Input" PinNumber="1" ConnectedNode="V1.1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="60" width="0.5" height="0.5" as="geometry"/><mxCell value="V1
dc 0 PULSE (0 5 1u 1u 1u 1 1)" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="2" vertex="1" connectable="0" Component="1" CellType="Component" symbol="V" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="250" y="240.00000000000003" width="120" height="120" as="geometry"/><Object id="835" name="VSOURCE" svg_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A_thumbnail.svg" symbol_prefix="V" component_library="http://localhost/api/libraries/10/" description="Voltage source symbol for simulation only" data_link="~" full_name="V-VSOURCE-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="V1" NAME="VSOURCE" N1="" N2="" VALUE="dc 0 PULSE (0 5 1u 1u 1u 1 1)" EXTRA_EXPRESSION="" MODEL="" UNIT="V" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="2" style="align=right;verticalAlign=bottom;rotation=0" id="4" vertex="1" Pin="1" pinType="Input" PinNumber="2" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="60" y="119" width="0.5" height="0.5" as="geometry"/><mxCell value="V1
dc 0 PULSE (0 5 1u 1u 1u 1 1)" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="2" vertex="1" connectable="0" Component="1" CellType="Component" symbol="V" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="250" y="240.00000000000003" width="120" height="120" as="geometry"/><Object id="835" name="VSOURCE" svg_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A_thumbnail.svg" symbol_prefix="V" component_library="http://localhost/api/libraries/10/" description="Voltage source symbol for simulation only" data_link="~" full_name="V-VSOURCE-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="V1" NAME="VSOURCE" N1="" N2="" VALUE="dc 0 PULSE (0 5 1u 1u 1u 1 1)" EXTRA_EXPRESSION="" MODEL="" UNIT="V" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="R1
10k" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="5" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="514" y="200.50000000000003" width="16" height="100" as="geometry"/><Object id="836" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/10/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R1" NAME="R" N1="" N2="" VALUE="10k" EXTRA_EXPRESSION="" MODEL="" UNIT="K" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="6" vertex="1" Pin="1" pinType="Output" PinNumber="1" ConnectedNode="V1.1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="8" width="0.5" height="0.5" as="geometry"/><mxCell value="R1
10k" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="5" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="514" y="200.50000000000003" width="16" height="100" as="geometry"/><Object id="836" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/10/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R1" NAME="R" N1="" N2="" VALUE="10k" EXTRA_EXPRESSION="" MODEL="" UNIT="K" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="2" style="align=right;verticalAlign=bottom;rotation=0" id="7" vertex="1" Pin="1" pinType="Output" PinNumber="2" ConnectedNode="R1.2" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="8" y="99" width="0.5" height="0.5" as="geometry"/><mxCell value="R1
10k" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="5" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="514" y="200.50000000000003" width="16" height="100" as="geometry"/><Object id="836" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/10/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R1" NAME="R" N1="" N2="" VALUE="10k" EXTRA_EXPRESSION="" MODEL="" UNIT="K" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="C1
1u" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="8" vertex="1" connectable="0" Component="1" CellType="Component" symbol="C" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="492.00000000000006" y="360" width="60" height="100" as="geometry"/><Object id="834" name="CAP" svg_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A_thumbnail.svg" symbol_prefix="C" component_library="http://localhost/api/libraries/10/" description="Capacitor symbol for simulation only" data_link="~" full_name="C-CAP-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="C1" NAME="CAP" N1="" N2="" VALUE="1u" EXTRA_EXPRESSION="" MODEL="" UNIT="F" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="9" vertex="1" Pin="1" pinType="Output" PinNumber="1" ConnectedNode="R1.2" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="30" width="0.5" height="0.5" as="geometry"/><mxCell value="C1
1u" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="8" vertex="1" connectable="0" Component="1" CellType="Component" symbol="C" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="492.00000000000006" y="360" width="60" height="100" as="geometry"/><Object id="834" name="CAP" svg_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A_thumbnail.svg" symbol_prefix="C" component_library="http://localhost/api/libraries/10/" description="Capacitor symbol for simulation only" data_link="~" full_name="C-CAP-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="C1" NAME="CAP" N1="" N2="" VALUE="1u" EXTRA_EXPRESSION="" MODEL="" UNIT="F" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="2" style="align=right;verticalAlign=bottom;rotation=0" id="10" vertex="1" Pin="1" pinType="Output" PinNumber="2" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="30" y="99" width="0.5" height="0.5" as="geometry"/><mxCell value="C1
1u" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="8" vertex="1" connectable="0" Component="1" CellType="Component" symbol="C" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="492.00000000000006" y="360" width="60" height="100" as="geometry"/><Object id="834" name="CAP" svg_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A_thumbnail.svg" symbol_prefix="C" component_library="http://localhost/api/libraries/10/" description="Capacitor symbol for simulation only" data_link="~" full_name="C-CAP-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="C1" NAME="CAP" N1="" N2="" VALUE="1u" EXTRA_EXPRESSION="" MODEL="" UNIT="F" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="C2
100n" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="11" vertex="1" connectable="0" Component="1" CellType="Component" symbol="C" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="638" y="370" width="60" height="100" as="geometry"/><Object id="834" name="CAP" svg_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A_thumbnail.svg" symbol_prefix="C" component_library="http://localhost/api/libraries/10/" description="Capacitor symbol for simulation only" data_link="~" full_name="C-CAP-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="C2" NAME="CAP" N1="" N2="" VALUE="100n" EXTRA_EXPRESSION="" MODEL="" UNIT="F" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="12" vertex="1" Pin="1" pinType="Output" PinNumber="1" ConnectedNode="R2.2" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="30" width="0.5" height="0.5" as="geometry"/><mxCell value="C2
100n" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="11" vertex="1" connectable="0" Component="1" CellType="Component" symbol="C" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="638" y="370" width="60" height="100" as="geometry"/><Object id="834" name="CAP" svg_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A_thumbnail.svg" symbol_prefix="C" component_library="http://localhost/api/libraries/10/" description="Capacitor symbol for simulation only" data_link="~" full_name="C-CAP-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="C2" NAME="CAP" N1="" N2="" VALUE="100n" EXTRA_EXPRESSION="" MODEL="" UNIT="F" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="2" style="align=right;verticalAlign=bottom;rotation=0" id="13" vertex="1" Pin="1" pinType="Output" PinNumber="2" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="30" y="99" width="0.5" height="0.5" as="geometry"/><mxCell value="C2
100n" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="11" vertex="1" connectable="0" Component="1" CellType="Component" symbol="C" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="638" y="370" width="60" height="100" as="geometry"/><Object id="834" name="CAP" svg_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A_thumbnail.svg" symbol_prefix="C" component_library="http://localhost/api/libraries/10/" description="Capacitor symbol for simulation only" data_link="~" full_name="C-CAP-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="C2" NAME="CAP" N1="" N2="" VALUE="100n" EXTRA_EXPRESSION="" MODEL="" UNIT="F" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="R2
1k" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="14" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="660" y="200.50000000000003" width="16" height="100" as="geometry"/><Object id="836" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/10/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R2" NAME="R" N1="" N2="" VALUE="1k" EXTRA_EXPRESSION="" MODEL="" UNIT="K" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="15" vertex="1" Pin="1" pinType="Output" PinNumber="1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="8" width="0.5" height="0.5" as="geometry"/><mxCell value="R2
1k" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="14" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="660" y="200.50000000000003" width="16" height="100" as="geometry"/><Object id="836" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/10/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R2" NAME="R" N1="" N2="" VALUE="1k" EXTRA_EXPRESSION="" MODEL="" UNIT="K" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="2" style="align=right;verticalAlign=bottom;rotation=0" id="16" vertex="1" Pin="1" pinType="Output" PinNumber="2" ConnectedNode="R2.2" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="8" y="99" width="0.5" height="0.5" as="geometry"/><mxCell value="R2
1k" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="14" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="660" y="200.50000000000003" width="16" height="100" as="geometry"/><Object id="836" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/10/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R2" NAME="R" N1="" N2="" VALUE="1k" EXTRA_EXPRESSION="" MODEL="" UNIT="K" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="V1.1" style="exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" id="17" edge="1" node="V1.1" sourceVertex="3" targetVertex="6" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" tarx="0" tary="0"><mxGeometry relative="1" as="geometry"><Array as="points"><mxPoint x="160" y="240"/><mxPoint x="160" y="166"/><mxPoint x="523" y="166"/></Array></mxGeometry><Object as="properties"/></mxCell><mxCell value="R1.2" style="exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" id="18" edge="1" node="R1.2" sourceVertex="7" targetVertex="9" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" tarx="0" tary="0"><mxGeometry relative="1" as="geometry"/><Object as="properties"/></mxCell><mxCell value="R1.2" style="exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;" id="20" edge="1" node="R1.2" sourceVertex="15" targetVertex="18" tarx="520" tary="330" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName=""><mxGeometry relative="1" as="geometry"><mxPoint x="520" y="330" as="targetPoint"/><Array as="points"><mxPoint x="670" y="201"/><mxPoint x="670" y="170"/><mxPoint x="600" y="170"/><mxPoint x="600" y="360"/><mxPoint x="570" y="360"/><mxPoint x="570" y="330"/></Array></mxGeometry><Object as="properties"/></mxCell><mxCell value="R2.2" style="exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" id="21" edge="1" node="R2.2" sourceVertex="16" targetVertex="12" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" tarx="0" tary="0"><mxGeometry relative="1" as="geometry"/><Object as="properties"/></mxCell><mxCell value="GNDA" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="22" vertex="1" connectable="0" Component="1" CellType="Component" symbol="PWR" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="290" y="419" width="40" height="80" as="geometry"/><Object id="997" name="GNDA" svg_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A_thumbnail.svg" symbol_prefix="PWR" component_library="http://localhost/api/libraries/14/" description="Power symbol creates a global label with name "GNDA" , analog ground" data_link="" full_name="PWR-GNDA-1-A" keyword="power-flag" as="CompObject"><Array as="alternate_component"/></Object><Object NAME="GNDA" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="23" vertex="1" Pin="1" pinType="Output" PinNumber="1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="20" y="39" width="0.5" height="0.5" as="geometry"/><mxCell value="GNDA" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="22" vertex="1" connectable="0" Component="1" CellType="Component" symbol="PWR" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="290" y="419" width="40" height="80" as="geometry"/><Object id="997" name="GNDA" svg_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A_thumbnail.svg" symbol_prefix="PWR" component_library="http://localhost/api/libraries/14/" description="Power symbol creates a global label with name "GNDA" , analog ground" data_link="" full_name="PWR-GNDA-1-A" keyword="power-flag" as="CompObject"><Array as="alternate_component"/></Object><Object NAME="GNDA" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="GNDA" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="24" vertex="1" connectable="0" Component="1" CellType="Component" symbol="PWR" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="502" y="480" width="40" height="80" as="geometry"/><Object id="997" name="GNDA" svg_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A_thumbnail.svg" symbol_prefix="PWR" component_library="http://localhost/api/libraries/14/" description="Power symbol creates a global label with name "GNDA" , analog ground" data_link="" full_name="PWR-GNDA-1-A" keyword="power-flag" as="CompObject"><Array as="alternate_component"/></Object><Object NAME="GNDA" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="25" vertex="1" Pin="1" pinType="Output" PinNumber="1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="20" y="39" width="0.5" height="0.5" as="geometry"/><mxCell value="GNDA" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="24" vertex="1" connectable="0" Component="1" CellType="Component" symbol="PWR" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="502" y="480" width="40" height="80" as="geometry"/><Object id="997" name="GNDA" svg_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A_thumbnail.svg" symbol_prefix="PWR" component_library="http://localhost/api/libraries/14/" description="Power symbol creates a global label with name "GNDA" , analog ground" data_link="" full_name="PWR-GNDA-1-A" keyword="power-flag" as="CompObject"><Array as="alternate_component"/></Object><Object NAME="GNDA" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="GNDA" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="26" vertex="1" connectable="0" Component="1" CellType="Component" symbol="PWR" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="648" y="510" width="40" height="80" as="geometry"/><Object id="997" name="GNDA" svg_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A_thumbnail.svg" symbol_prefix="PWR" component_library="http://localhost/api/libraries/14/" description="Power symbol creates a global label with name "GNDA" , analog ground" data_link="" full_name="PWR-GNDA-1-A" keyword="power-flag" as="CompObject"><Array as="alternate_component"/></Object><Object NAME="GNDA" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="27" vertex="1" Pin="1" pinType="Output" PinNumber="1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="20" y="39" width="0.5" height="0.5" as="geometry"/><mxCell value="GNDA" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="26" vertex="1" connectable="0" Component="1" CellType="Component" symbol="PWR" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="648" y="510" width="40" height="80" as="geometry"/><Object id="997" name="GNDA" svg_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A_thumbnail.svg" symbol_prefix="PWR" component_library="http://localhost/api/libraries/14/" description="Power symbol creates a global label with name "GNDA" , analog ground" data_link="" full_name="PWR-GNDA-1-A" keyword="power-flag" as="CompObject"><Array as="alternate_component"/></Object><Object NAME="GNDA" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="0" style="exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" id="28" edge="1" node="0" sourceVertex="4" targetVertex="23" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" tarx="0" tary="0"><mxGeometry relative="1" as="geometry"/><Object as="properties"/></mxCell><mxCell value="0" style="exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" id="29" edge="1" node="0" sourceVertex="10" targetVertex="25" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" tarx="0" tary="0"><mxGeometry relative="1" as="geometry"/><Object as="properties"/></mxCell><mxCell value="0" style="exitX=1;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" id="30" edge="1" node="0" sourceVertex="13" targetVertex="27" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" tarx="0" tary="0"><mxGeometry relative="1" as="geometry"/><Object as="properties"/></mxCell></root></mxGraphModel>', - name: 'Dual RC Ladder', - description: 'This is an dual RC ladder circuit with Passive components. The input is a voltage waveform (a pulse) versus time, and the output is a waveform as well. ', - media: 'gallery2.png', - shared: true - }, - { - save_id: 'gallery3', - data_dump: '<mxGraphModel><root><mxCell id="0" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><Object as="properties"/></mxCell><mxCell id="1" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><Object as="properties"/></mxCell><mxCell value="V1
dc 0 ac 1 sin(0 1m 500)" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="2" vertex="1" connectable="0" Component="1" CellType="Component" symbol="V" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="70" y="440" width="120" height="120" as="geometry"/><Object id="317" name="VSOURCE" svg_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A_thumbnail.svg" symbol_prefix="V" component_library="http://localhost/api/libraries/8/" description="Voltage source symbol for simulation only" data_link="~" full_name="V-VSOURCE-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="V1" NAME="VSOURCE" N1="" N2="" VALUE="dc 0 ac 1 sin(0 1m 500)" EXTRA_EXPRESSION="" MODEL="" UNIT="V" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="3" vertex="1" Pin="1" pinType="Input" PinNumber="1" ConnectedNode="V1.1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="60" width="0.5" height="0.5" as="geometry"/><mxCell value="V1
dc 0 ac 1 sin(0 1m 500)" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="2" vertex="1" connectable="0" Component="1" CellType="Component" symbol="V" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="70" y="440" width="120" height="120" as="geometry"/><Object id="317" name="VSOURCE" svg_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A_thumbnail.svg" symbol_prefix="V" component_library="http://localhost/api/libraries/8/" description="Voltage source symbol for simulation only" data_link="~" full_name="V-VSOURCE-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="V1" NAME="VSOURCE" N1="" N2="" VALUE="dc 0 ac 1 sin(0 1m 500)" EXTRA_EXPRESSION="" MODEL="" UNIT="V" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="2" style="align=right;verticalAlign=bottom;rotation=0" id="4" vertex="1" Pin="1" pinType="Input" PinNumber="2" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="60" y="119" width="0.5" height="0.5" as="geometry"/><mxCell value="V1
dc 0 ac 1 sin(0 1m 500)" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="2" vertex="1" connectable="0" Component="1" CellType="Component" symbol="V" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="70" y="440" width="120" height="120" as="geometry"/><Object id="317" name="VSOURCE" svg_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A_thumbnail.svg" symbol_prefix="V" component_library="http://localhost/api/libraries/8/" description="Voltage source symbol for simulation only" data_link="~" full_name="V-VSOURCE-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="V1" NAME="VSOURCE" N1="" N2="" VALUE="dc 0 ac 1 sin(0 1m 500)" EXTRA_EXPRESSION="" MODEL="" UNIT="V" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="C1
10u" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="5" vertex="1" connectable="0" Component="1" CellType="Component" symbol="C" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="250" y="340" width="60" height="100" as="geometry"/><Object id="319" name="CAP" svg_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A_thumbnail.svg" symbol_prefix="C" component_library="http://localhost/api/libraries/8/" description="Capacitor symbol for simulation only" data_link="~" full_name="C-CAP-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="C1" NAME="CAP" N1="" N2="" VALUE="10u" EXTRA_EXPRESSION="" MODEL="" UNIT="F" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="6" vertex="1" Pin="1" pinType="Output" PinNumber="1" ConnectedNode="C1.1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="30" width="0.5" height="0.5" as="geometry"/><mxCell value="C1
10u" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="5" vertex="1" connectable="0" Component="1" CellType="Component" symbol="C" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="250" y="340" width="60" height="100" as="geometry"/><Object id="319" name="CAP" svg_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A_thumbnail.svg" symbol_prefix="C" component_library="http://localhost/api/libraries/8/" description="Capacitor symbol for simulation only" data_link="~" full_name="C-CAP-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="C1" NAME="CAP" N1="" N2="" VALUE="10u" EXTRA_EXPRESSION="" MODEL="" UNIT="F" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="2" style="align=right;verticalAlign=bottom;rotation=0" id="7" vertex="1" Pin="1" pinType="Output" PinNumber="2" ConnectedNode="V1.1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="30" y="99" width="0.5" height="0.5" as="geometry"/><mxCell value="C1
10u" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="5" vertex="1" connectable="0" Component="1" CellType="Component" symbol="C" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="250" y="340" width="60" height="100" as="geometry"/><Object id="319" name="CAP" svg_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A_thumbnail.svg" symbol_prefix="C" component_library="http://localhost/api/libraries/8/" description="Capacitor symbol for simulation only" data_link="~" full_name="C-CAP-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="C1" NAME="CAP" N1="" N2="" VALUE="10u" EXTRA_EXPRESSION="" MODEL="" UNIT="F" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="V1.1" style="exitX=1;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" id="8" edge="1" node="V1.1" sourceVertex="3" targetVertex="7" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" tarx="0" tary="0"><mxGeometry relative="1" as="geometry"/><Object as="properties"/></mxCell><mxCell value="Q2" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/Transistor_BJT/Q-BC307-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="9" vertex="1" connectable="0" Component="1" CellType="Component" symbol="Q" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="620" y="300" width="80" height="80" as="geometry"/><Object id="610" name="BC307" svg_path="kicad-symbols/symbol_svgs/Transistor_BJT/Q-BC307-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/Transistor_BJT/Q-BC307-1-A_thumbnail.svg" symbol_prefix="Q" component_library="http://localhost/api/libraries/12/" description="100mA Ic, 45V Vce, Epitaxial Silicon PNP Transistor, TO-92" data_link="http://www.onsemi.com/pub_link/Collateral/BC307-D.PDF" full_name="Q-BC307-1-A" keyword="Epitaxial Silicon PNP Transistor" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="Q2" NAME="BC307" N1="" N2="" N3="" EXTRA_EXPRESSION="" MODEL=".model BC546B npn ( IS=7.59E-15 VAF=73.4 BF=480 IKF=0.0962 NE=1.2665
+ ISE=3.278E-15 IKR=0.03 ISC=2.00E-13 NC=1.2 NR=1 BR=5 RC=0.25 CJC=6.33E-12
+ FC=0.5 MJC=0.33 VJC=0.65 CJE=1.25E-11 MJE=0.55 VJE=0.65 TF=4.26E-10
+ ITF=0.6 VTF=3 XTF=20 RB=100 IRB=0.0001 RBM=10 RE=0.5 TR=1.50E-07)" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="10" vertex="1" Pin="1" pinType="Output" PinNumber="1" ConnectedNode="R2.2" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="60" width="0.5" height="0.5" as="geometry"/><mxCell value="Q2" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/Transistor_BJT/Q-BC307-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="9" vertex="1" connectable="0" Component="1" CellType="Component" symbol="Q" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="620" y="300" width="80" height="80" as="geometry"/><Object id="610" name="BC307" svg_path="kicad-symbols/symbol_svgs/Transistor_BJT/Q-BC307-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/Transistor_BJT/Q-BC307-1-A_thumbnail.svg" symbol_prefix="Q" component_library="http://localhost/api/libraries/12/" description="100mA Ic, 45V Vce, Epitaxial Silicon PNP Transistor, TO-92" data_link="http://www.onsemi.com/pub_link/Collateral/BC307-D.PDF" full_name="Q-BC307-1-A" keyword="Epitaxial Silicon PNP Transistor" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="Q2" NAME="BC307" N1="" N2="" N3="" EXTRA_EXPRESSION="" MODEL=".model BC546B npn ( IS=7.59E-15 VAF=73.4 BF=480 IKF=0.0962 NE=1.2665
+ ISE=3.278E-15 IKR=0.03 ISC=2.00E-13 NC=1.2 NR=1 BR=5 RC=0.25 CJC=6.33E-12
+ FC=0.5 MJC=0.33 VJC=0.65 CJE=1.25E-11 MJE=0.55 VJE=0.65 TF=4.26E-10
+ ITF=0.6 VTF=3 XTF=20 RB=100 IRB=0.0001 RBM=10 RE=0.5 TR=1.50E-07)" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="2" style="align=left;verticalAlign=bottom;rotation=0" id="11" vertex="1" Pin="1" pinType="Input" PinNumber="2" ConnectedNode="C1.1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry y="39" width="0.5" height="0.5" as="geometry"/><mxCell value="Q2" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/Transistor_BJT/Q-BC307-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="9" vertex="1" connectable="0" Component="1" CellType="Component" symbol="Q" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="620" y="300" width="80" height="80" as="geometry"/><Object id="610" name="BC307" svg_path="kicad-symbols/symbol_svgs/Transistor_BJT/Q-BC307-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/Transistor_BJT/Q-BC307-1-A_thumbnail.svg" symbol_prefix="Q" component_library="http://localhost/api/libraries/12/" description="100mA Ic, 45V Vce, Epitaxial Silicon PNP Transistor, TO-92" data_link="http://www.onsemi.com/pub_link/Collateral/BC307-D.PDF" full_name="Q-BC307-1-A" keyword="Epitaxial Silicon PNP Transistor" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="Q2" NAME="BC307" N1="" N2="" N3="" EXTRA_EXPRESSION="" MODEL=".model BC546B npn ( IS=7.59E-15 VAF=73.4 BF=480 IKF=0.0962 NE=1.2665
+ ISE=3.278E-15 IKR=0.03 ISC=2.00E-13 NC=1.2 NR=1 BR=5 RC=0.25 CJC=6.33E-12
+ FC=0.5 MJC=0.33 VJC=0.65 CJE=1.25E-11 MJE=0.55 VJE=0.65 TF=4.26E-10
+ ITF=0.6 VTF=3 XTF=20 RB=100 IRB=0.0001 RBM=10 RE=0.5 TR=1.50E-07)" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="3" style="align=right;verticalAlign=bottom;rotation=0" id="12" vertex="1" Pin="1" pinType="Output" PinNumber="3" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="60" y="79" width="0.5" height="0.5" as="geometry"/><mxCell value="Q2" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/Transistor_BJT/Q-BC307-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="9" vertex="1" connectable="0" Component="1" CellType="Component" symbol="Q" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="620" y="300" width="80" height="80" as="geometry"/><Object id="610" name="BC307" svg_path="kicad-symbols/symbol_svgs/Transistor_BJT/Q-BC307-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/Transistor_BJT/Q-BC307-1-A_thumbnail.svg" symbol_prefix="Q" component_library="http://localhost/api/libraries/12/" description="100mA Ic, 45V Vce, Epitaxial Silicon PNP Transistor, TO-92" data_link="http://www.onsemi.com/pub_link/Collateral/BC307-D.PDF" full_name="Q-BC307-1-A" keyword="Epitaxial Silicon PNP Transistor" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="Q2" NAME="BC307" N1="" N2="" N3="" EXTRA_EXPRESSION="" MODEL=".model BC546B npn ( IS=7.59E-15 VAF=73.4 BF=480 IKF=0.0962 NE=1.2665
+ ISE=3.278E-15 IKR=0.03 ISC=2.00E-13 NC=1.2 NR=1 BR=5 RC=0.25 CJC=6.33E-12
+ FC=0.5 MJC=0.33 VJC=0.65 CJE=1.25E-11 MJE=0.55 VJE=0.65 TF=4.26E-10
+ ITF=0.6 VTF=3 XTF=20 RB=100 IRB=0.0001 RBM=10 RE=0.5 TR=1.50E-07)" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="C1.1" style="exitX=1;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" id="13" edge="1" node="C1.1" sourceVertex="6" targetVertex="11" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" tarx="0" tary="0"><mxGeometry relative="1" as="geometry"/><Object as="properties"/></mxCell><mxCell value="GNDS" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/power/PWR-GNDS-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="14" vertex="1" connectable="0" Component="1" CellType="Component" symbol="PWR" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="110" y="610" width="40" height="80" as="geometry"/><Object id="51" name="GNDS" svg_path="kicad-symbols/symbol_svgs/power/PWR-GNDS-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/power/PWR-GNDS-1-A_thumbnail.svg" symbol_prefix="PWR" component_library="http://localhost/api/libraries/2/" description="Power symbol creates a global label with name "GNDS" , signal ground" data_link="" full_name="PWR-GNDS-1-A" keyword="power-flag" as="CompObject"><Array as="alternate_component"/></Object><Object NAME="GNDS" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="15" vertex="1" Pin="1" pinType="Output" PinNumber="1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="20" y="39" width="0.5" height="0.5" as="geometry"/><mxCell value="GNDS" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/power/PWR-GNDS-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="14" vertex="1" connectable="0" Component="1" CellType="Component" symbol="PWR" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="110" y="610" width="40" height="80" as="geometry"/><Object id="51" name="GNDS" svg_path="kicad-symbols/symbol_svgs/power/PWR-GNDS-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/power/PWR-GNDS-1-A_thumbnail.svg" symbol_prefix="PWR" component_library="http://localhost/api/libraries/2/" description="Power symbol creates a global label with name "GNDS" , signal ground" data_link="" full_name="PWR-GNDS-1-A" keyword="power-flag" as="CompObject"><Array as="alternate_component"/></Object><Object NAME="GNDS" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="0" style="exitX=1;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" id="16" edge="1" node="0" sourceVertex="4" targetVertex="15" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" tarx="0" tary="0"><mxGeometry relative="1" as="geometry"/><Object as="properties"/></mxCell><mxCell value="GNDS" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/power/PWR-GNDS-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="17" vertex="1" connectable="0" Component="1" CellType="Component" symbol="PWR" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="660" y="610" width="40" height="80" as="geometry"/><Object id="51" name="GNDS" svg_path="kicad-symbols/symbol_svgs/power/PWR-GNDS-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/power/PWR-GNDS-1-A_thumbnail.svg" symbol_prefix="PWR" component_library="http://localhost/api/libraries/2/" description="Power symbol creates a global label with name "GNDS" , signal ground" data_link="" full_name="PWR-GNDS-1-A" keyword="power-flag" as="CompObject"><Array as="alternate_component"/></Object><Object NAME="GNDS" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="18" vertex="1" Pin="1" pinType="Output" PinNumber="1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="20" y="39" width="0.5" height="0.5" as="geometry"/><mxCell value="GNDS" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/power/PWR-GNDS-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="17" vertex="1" connectable="0" Component="1" CellType="Component" symbol="PWR" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="660" y="610" width="40" height="80" as="geometry"/><Object id="51" name="GNDS" svg_path="kicad-symbols/symbol_svgs/power/PWR-GNDS-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/power/PWR-GNDS-1-A_thumbnail.svg" symbol_prefix="PWR" component_library="http://localhost/api/libraries/2/" description="Power symbol creates a global label with name "GNDS" , signal ground" data_link="" full_name="PWR-GNDS-1-A" keyword="power-flag" as="CompObject"><Array as="alternate_component"/></Object><Object NAME="GNDS" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="0" style="exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" id="19" edge="1" node="0" sourceVertex="12" targetVertex="18" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" tarx="0" tary="0"><mxGeometry relative="1" as="geometry"/><Object as="properties"/></mxCell><mxCell value="R1
10k" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="20" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="380" y="460" width="16" height="100" as="geometry"><mxPoint x="-2" y="-1" as="offset"/></mxGeometry><Object id="321" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/8/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R1" NAME="R" N1="" N2="" VALUE="10k" EXTRA_EXPRESSION="" MODEL="" UNIT="K" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="21" vertex="1" Pin="1" pinType="Output" PinNumber="1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="8" width="0.5" height="0.5" as="geometry"/><mxCell value="R1
10k" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="20" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="380" y="460" width="16" height="100" as="geometry"><mxPoint x="-2" y="-1" as="offset"/></mxGeometry><Object id="321" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/8/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R1" NAME="R" N1="" N2="" VALUE="10k" EXTRA_EXPRESSION="" MODEL="" UNIT="K" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="2" style="align=right;verticalAlign=bottom;rotation=0" id="22" vertex="1" Pin="1" pinType="Output" PinNumber="2" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="8" y="99" width="0.5" height="0.5" as="geometry"/><mxCell value="R1
10k" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="20" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="380" y="460" width="16" height="100" as="geometry"><mxPoint x="-2" y="-1" as="offset"/></mxGeometry><Object id="321" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/8/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R1" NAME="R" N1="" N2="" VALUE="10k" EXTRA_EXPRESSION="" MODEL="" UNIT="K" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="0" style="exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;" id="24" edge="1" node="0" sourceVertex="22" targetVertex="19" tarx="680" tary="620" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName=""><mxGeometry relative="1" as="geometry"><mxPoint x="680" y="620" as="targetPoint"/><Array as="points"><mxPoint x="388" y="620"/></Array></mxGeometry><Object as="properties"/></mxCell><mxCell value="R2
10k" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="25" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="672" y="110" width="16" height="100" as="geometry"/><Object id="321" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/8/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R2" NAME="R" N1="" N2="" VALUE="10k" EXTRA_EXPRESSION="" MODEL="" UNIT="K" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="26" vertex="1" Pin="1" pinType="Output" PinNumber="1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="8" width="0.5" height="0.5" as="geometry"/><mxCell value="R2
10k" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="25" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="672" y="110" width="16" height="100" as="geometry"/><Object id="321" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/8/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R2" NAME="R" N1="" N2="" VALUE="10k" EXTRA_EXPRESSION="" MODEL="" UNIT="K" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="2" style="align=right;verticalAlign=bottom;rotation=0" id="27" vertex="1" Pin="1" pinType="Output" PinNumber="2" ConnectedNode="R2.2" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="8" y="99" width="0.5" height="0.5" as="geometry"/><mxCell value="R2
10k" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="25" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="672" y="110" width="16" height="100" as="geometry"/><Object id="321" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/8/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R2" NAME="R" N1="" N2="" VALUE="10k" EXTRA_EXPRESSION="" MODEL="" UNIT="K" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="R2.2" style="exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" id="28" edge="1" node="R2.2" sourceVertex="27" targetVertex="10" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" tarx="0" tary="0"><mxGeometry relative="1" as="geometry"/><Object as="properties"/></mxCell><mxCell value="R3
68k" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="29" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="430" y="110" width="16" height="100" as="geometry"><mxPoint x="-11" as="offset"/></mxGeometry><Object id="321" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/8/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R3" NAME="R" N1="" N2="" VALUE="68k" EXTRA_EXPRESSION="" MODEL="" UNIT="K" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="30" vertex="1" Pin="1" pinType="Output" PinNumber="1" ConnectedNode="V2.1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="8" width="0.5" height="0.5" as="geometry"/><mxCell value="R3
68k" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="29" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="430" y="110" width="16" height="100" as="geometry"><mxPoint x="-11" as="offset"/></mxGeometry><Object id="321" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/8/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R3" NAME="R" N1="" N2="" VALUE="68k" EXTRA_EXPRESSION="" MODEL="" UNIT="K" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="2" style="align=right;verticalAlign=bottom;rotation=0" id="31" vertex="1" Pin="1" pinType="Output" PinNumber="2" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="8" y="99" width="0.5" height="0.5" as="geometry"/><mxCell value="R3
68k" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="29" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="430" y="110" width="16" height="100" as="geometry"><mxPoint x="-11" as="offset"/></mxGeometry><Object id="321" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/8/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R3" NAME="R" N1="" N2="" VALUE="68k" EXTRA_EXPRESSION="" MODEL="" UNIT="K" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="V2
5" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="33" vertex="1" connectable="0" Component="1" CellType="Component" symbol="V" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="70" y="90" width="120" height="120" as="geometry"/><Object id="317" name="VSOURCE" svg_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A_thumbnail.svg" symbol_prefix="V" component_library="http://localhost/api/libraries/8/" description="Voltage source symbol for simulation only" data_link="~" full_name="V-VSOURCE-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="V2" NAME="VSOURCE" N1="" N2="" VALUE="5" EXTRA_EXPRESSION="" MODEL="" UNIT="V" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="34" vertex="1" Pin="1" pinType="Input" PinNumber="1" ConnectedNode="V2.1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="60" width="0.5" height="0.5" as="geometry"/><mxCell value="V2
5" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="33" vertex="1" connectable="0" Component="1" CellType="Component" symbol="V" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="70" y="90" width="120" height="120" as="geometry"/><Object id="317" name="VSOURCE" svg_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A_thumbnail.svg" symbol_prefix="V" component_library="http://localhost/api/libraries/8/" description="Voltage source symbol for simulation only" data_link="~" full_name="V-VSOURCE-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="V2" NAME="VSOURCE" N1="" N2="" VALUE="5" EXTRA_EXPRESSION="" MODEL="" UNIT="V" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="2" style="align=right;verticalAlign=bottom;rotation=0" id="35" vertex="1" Pin="1" pinType="Input" PinNumber="2" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="60" y="119" width="0.5" height="0.5" as="geometry"/><mxCell value="V2
5" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="33" vertex="1" connectable="0" Component="1" CellType="Component" symbol="V" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="70" y="90" width="120" height="120" as="geometry"/><Object id="317" name="VSOURCE" svg_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A_thumbnail.svg" symbol_prefix="V" component_library="http://localhost/api/libraries/8/" description="Voltage source symbol for simulation only" data_link="~" full_name="V-VSOURCE-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="V2" NAME="VSOURCE" N1="" N2="" VALUE="5" EXTRA_EXPRESSION="" MODEL="" UNIT="V" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="V2.1" style="exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" id="36" edge="1" node="V2.1" sourceVertex="34" targetVertex="30" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" tarx="0" tary="0"><mxGeometry relative="1" as="geometry"/><Object as="properties"/></mxCell><mxCell value="V2.1" style="exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;" id="37" edge="1" node="V2.1" sourceVertex="26" targetVertex="36" tarx="440" tary="90" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName=""><mxGeometry relative="1" as="geometry"><mxPoint x="440" y="90" as="targetPoint"/><Array as="points"><mxPoint x="680" y="90"/></Array></mxGeometry><Object as="properties"/></mxCell><mxCell value="GNDS" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/power/PWR-GNDS-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="38" vertex="1" connectable="0" Component="1" CellType="Component" symbol="PWR" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="110" y="230" width="40" height="80" as="geometry"/><Object id="51" name="GNDS" svg_path="kicad-symbols/symbol_svgs/power/PWR-GNDS-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/power/PWR-GNDS-1-A_thumbnail.svg" symbol_prefix="PWR" component_library="http://localhost/api/libraries/2/" description="Power symbol creates a global label with name "GNDS" , signal ground" data_link="" full_name="PWR-GNDS-1-A" keyword="power-flag" as="CompObject"><Array as="alternate_component"/></Object><Object NAME="GNDS" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="39" vertex="1" Pin="1" pinType="Output" PinNumber="1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="20" y="39" width="0.5" height="0.5" as="geometry"/><mxCell value="GNDS" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/power/PWR-GNDS-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="38" vertex="1" connectable="0" Component="1" CellType="Component" symbol="PWR" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="110" y="230" width="40" height="80" as="geometry"/><Object id="51" name="GNDS" svg_path="kicad-symbols/symbol_svgs/power/PWR-GNDS-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/power/PWR-GNDS-1-A_thumbnail.svg" symbol_prefix="PWR" component_library="http://localhost/api/libraries/2/" description="Power symbol creates a global label with name "GNDS" , signal ground" data_link="" full_name="PWR-GNDS-1-A" keyword="power-flag" as="CompObject"><Array as="alternate_component"/></Object><Object NAME="GNDS" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="0" style="exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" id="40" edge="1" node="0" sourceVertex="35" targetVertex="39" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" tarx="0" tary="0"><mxGeometry relative="1" as="geometry"/><Object as="properties"/></mxCell><mxCell value="C1.1" style="exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;" id="41" edge="1" node="C1.1" sourceVertex="21" targetVertex="13" tarx="560" tary="350" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName=""><mxGeometry relative="1" as="geometry"><mxPoint x="560" y="350" as="targetPoint"/></mxGeometry><Object as="properties"/></mxCell><mxCell value="C1.1" style="exitX=1;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;" id="42" edge="1" node="C1.1" sourceVertex="31" targetVertex="13" tarx="570" tary="340" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName=""><mxGeometry relative="1" as="geometry"><mxPoint x="570" y="340" as="targetPoint"/><Array as="points"><mxPoint x="570" y="270"/></Array></mxGeometry><Object as="properties"/></mxCell><mxCell value="C3
10u" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="43" vertex="1" connectable="0" Component="1" CellType="Component" symbol="C" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="850" y="270" width="60" height="100" as="geometry"/><Object id="319" name="CAP" svg_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A_thumbnail.svg" symbol_prefix="C" component_library="http://localhost/api/libraries/8/" description="Capacitor symbol for simulation only" data_link="~" full_name="C-CAP-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="C3" NAME="CAP" N1="" N2="" VALUE="10u" EXTRA_EXPRESSION="" MODEL="" UNIT="F" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="44" vertex="1" Pin="1" pinType="Output" PinNumber="1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="30" width="0.5" height="0.5" as="geometry"/><mxCell value="C3
10u" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="43" vertex="1" connectable="0" Component="1" CellType="Component" symbol="C" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="850" y="270" width="60" height="100" as="geometry"/><Object id="319" name="CAP" svg_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A_thumbnail.svg" symbol_prefix="C" component_library="http://localhost/api/libraries/8/" description="Capacitor symbol for simulation only" data_link="~" full_name="C-CAP-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="C3" NAME="CAP" N1="" N2="" VALUE="10u" EXTRA_EXPRESSION="" MODEL="" UNIT="F" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="2" style="align=right;verticalAlign=bottom;rotation=0" id="45" vertex="1" Pin="1" pinType="Output" PinNumber="2" ConnectedNode="C3.2" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="30" y="99" width="0.5" height="0.5" as="geometry"/><mxCell value="C3
10u" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="43" vertex="1" connectable="0" Component="1" CellType="Component" symbol="C" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="850" y="270" width="60" height="100" as="geometry"/><Object id="319" name="CAP" svg_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A_thumbnail.svg" symbol_prefix="C" component_library="http://localhost/api/libraries/8/" description="Capacitor symbol for simulation only" data_link="~" full_name="C-CAP-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="C3" NAME="CAP" N1="" N2="" VALUE="10u" EXTRA_EXPRESSION="" MODEL="" UNIT="F" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="R2.2" style="exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;" id="46" edge="1" node="R2.2" sourceVertex="44" targetVertex="28" tarx="680" tary="270" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName=""><mxGeometry relative="1" as="geometry"><mxPoint x="680" y="270" as="targetPoint"/></mxGeometry><Object as="properties"/></mxCell><mxCell value="R4
100k" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="47" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="872" y="460" width="16" height="100" as="geometry"/><Object id="321" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/8/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R4" NAME="R" N1="" N2="" VALUE="100k" EXTRA_EXPRESSION="" MODEL="" UNIT="K" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="48" vertex="1" Pin="1" pinType="Output" PinNumber="1" ConnectedNode="C3.2" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="8" width="0.5" height="0.5" as="geometry"/><mxCell value="R4
100k" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="47" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="872" y="460" width="16" height="100" as="geometry"/><Object id="321" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/8/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R4" NAME="R" N1="" N2="" VALUE="100k" EXTRA_EXPRESSION="" MODEL="" UNIT="K" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="2" style="align=right;verticalAlign=bottom;rotation=0" id="49" vertex="1" Pin="1" pinType="Output" PinNumber="2" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="8" y="99" width="0.5" height="0.5" as="geometry"/><mxCell value="R4
100k" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="47" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="872" y="460" width="16" height="100" as="geometry"/><Object id="321" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/8/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R4" NAME="R" N1="" N2="" VALUE="100k" EXTRA_EXPRESSION="" MODEL="" UNIT="K" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="C3.2" style="exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" id="50" edge="1" node="C3.2" sourceVertex="45" targetVertex="48" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" tarx="0" tary="0"><mxGeometry relative="1" as="geometry"><Array as="points"><mxPoint x="880" y="410"/><mxPoint x="889" y="410"/></Array></mxGeometry><Object as="properties"/></mxCell><mxCell value="0" style="exitX=1;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;" id="51" edge="1" node="0" sourceVertex="49" targetVertex="19" tarx="680" tary="640" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName=""><mxGeometry relative="1" as="geometry"><mxPoint x="680" y="640" as="targetPoint"/><Array as="points"><mxPoint x="880" y="660"/></Array></mxGeometry><Object as="properties"/></mxCell></root></mxGraphModel>', - name: 'Bipolar Amplifier', - description: 'A basic BJT amplifier has a very high gain that may vary widely from one transistor to the next. A NPN bipolar transistor is the used as amplifying device.', - media: 'gallery3.png', - shared: true - }, - { - save_id: 'gallery4', - data_dump: '<mxGraphModel><root><mxCell id="0" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><Object as="properties"/></mxCell><mxCell id="1" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><Object as="properties"/></mxCell><mxCell value="V1
1" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="2" vertex="1" connectable="0" Component="1" CellType="Component" symbol="V" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="230" y="220" width="120" height="120" as="geometry"/><Object id="835" name="VSOURCE" svg_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A_thumbnail.svg" symbol_prefix="V" component_library="http://localhost/api/libraries/10/" description="Voltage source symbol for simulation only" data_link="~" full_name="V-VSOURCE-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="V1" NAME="VSOURCE" N1="" N2="" VALUE="1" EXTRA_EXPRESSION="" MODEL="" VALUE_UNIT="V" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="3" vertex="1" Pin="1" pinType="Input" PinNumber="1" ConnectedNode="V1.1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="60" width="0.5" height="0.5" as="geometry"/><mxCell value="V1
1" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="2" vertex="1" connectable="0" Component="1" CellType="Component" symbol="V" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="230" y="220" width="120" height="120" as="geometry"/><Object id="835" name="VSOURCE" svg_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A_thumbnail.svg" symbol_prefix="V" component_library="http://localhost/api/libraries/10/" description="Voltage source symbol for simulation only" data_link="~" full_name="V-VSOURCE-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="V1" NAME="VSOURCE" N1="" N2="" VALUE="1" EXTRA_EXPRESSION="" MODEL="" VALUE_UNIT="V" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="2" style="align=right;verticalAlign=bottom;rotation=0" id="4" vertex="1" Pin="1" pinType="Input" PinNumber="2" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="60" y="119" width="0.5" height="0.5" as="geometry"/><mxCell value="V1
1" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="2" vertex="1" connectable="0" Component="1" CellType="Component" symbol="V" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="230" y="220" width="120" height="120" as="geometry"/><Object id="835" name="VSOURCE" svg_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A_thumbnail.svg" symbol_prefix="V" component_library="http://localhost/api/libraries/10/" description="Voltage source symbol for simulation only" data_link="~" full_name="V-VSOURCE-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="V1" NAME="VSOURCE" N1="" N2="" VALUE="1" EXTRA_EXPRESSION="" MODEL="" VALUE_UNIT="V" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="R1
1" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="5" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="510" y="220" width="16" height="100" as="geometry"><mxPoint x="3" as="offset"/></mxGeometry><Object id="836" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/10/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R1" NAME="R" N1="" N2="" VALUE="1" EXTRA_EXPRESSION="" MODEL="" VALUE_UNIT="Ohm" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="6" vertex="1" Pin="1" pinType="Output" PinNumber="1" ConnectedNode="V1.1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="8" width="0.5" height="0.5" as="geometry"/><mxCell value="R1
1" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="5" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="510" y="220" width="16" height="100" as="geometry"><mxPoint x="3" as="offset"/></mxGeometry><Object id="836" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/10/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R1" NAME="R" N1="" N2="" VALUE="1" EXTRA_EXPRESSION="" MODEL="" VALUE_UNIT="Ohm" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="2" style="align=right;verticalAlign=bottom;rotation=0" id="7" vertex="1" Pin="1" pinType="Output" PinNumber="2" ConnectedNode="R1.2" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="8" y="99" width="0.5" height="0.5" as="geometry"/><mxCell value="R1
1" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="5" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="510" y="220" width="16" height="100" as="geometry"><mxPoint x="3" as="offset"/></mxGeometry><Object id="836" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/10/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R1" NAME="R" N1="" N2="" VALUE="1" EXTRA_EXPRESSION="" MODEL="" VALUE_UNIT="Ohm" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="D1" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/D-DIODE-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="8" vertex="1" connectable="0" Component="1" CellType="Component" symbol="D" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="580" y="370" width="80.5" height="40" as="geometry"/><Object id="839" name="DIODE" svg_path="kicad-symbols/symbol_svgs/pspice/D-DIODE-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/D-DIODE-1-A_thumbnail.svg" symbol_prefix="D" component_library="http://localhost/api/libraries/10/" description="Diode symbol for simulation only. Pin order incompatible with official kicad footprints" data_link="~" full_name="D-DIODE-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="D1" NAME="DIODE" N1="" N2="" EXTRA_EXPRESSION="" MODEL=".model mydiode D" as="properties"/></mxCell><mxCell value="1" style="align=left;verticalAlign=bottom;rotation=0" id="9" vertex="1" Pin="1" pinType="Input" PinNumber="1" ConnectedNode="R1.2" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry y="19" width="0.5" height="0.5" as="geometry"/><mxCell value="D1" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/D-DIODE-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="8" vertex="1" connectable="0" Component="1" CellType="Component" symbol="D" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="580" y="370" width="80.5" height="40" as="geometry"/><Object id="839" name="DIODE" svg_path="kicad-symbols/symbol_svgs/pspice/D-DIODE-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/D-DIODE-1-A_thumbnail.svg" symbol_prefix="D" component_library="http://localhost/api/libraries/10/" description="Diode symbol for simulation only. Pin order incompatible with official kicad footprints" data_link="~" full_name="D-DIODE-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="D1" NAME="DIODE" N1="" N2="" EXTRA_EXPRESSION="" MODEL=".model mydiode D" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="2" style="align=right;verticalAlign=bottom;rotation=0" id="10" vertex="1" Pin="1" pinType="Input" PinNumber="2" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="80" y="19" width="0.5" height="0.5" as="geometry"/><mxCell value="D1" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/D-DIODE-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="8" vertex="1" connectable="0" Component="1" CellType="Component" symbol="D" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="580" y="370" width="80.5" height="40" as="geometry"/><Object id="839" name="DIODE" svg_path="kicad-symbols/symbol_svgs/pspice/D-DIODE-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/D-DIODE-1-A_thumbnail.svg" symbol_prefix="D" component_library="http://localhost/api/libraries/10/" description="Diode symbol for simulation only. Pin order incompatible with official kicad footprints" data_link="~" full_name="D-DIODE-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="D1" NAME="DIODE" N1="" N2="" EXTRA_EXPRESSION="" MODEL=".model mydiode D" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="GNDA" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="11" vertex="1" connectable="0" Component="1" CellType="Component" symbol="PWR" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="270" y="470" width="40" height="80" as="geometry"/><Object id="997" name="GNDA" svg_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A_thumbnail.svg" symbol_prefix="PWR" component_library="http://localhost/api/libraries/14/" description="Power symbol creates a global label with name "GNDA" , analog ground" data_link="" full_name="PWR-GNDA-1-A" keyword="power-flag" as="CompObject"><Array as="alternate_component"/></Object><Object NAME="GNDA" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="12" vertex="1" Pin="1" pinType="Output" PinNumber="1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="20" y="39" width="0.5" height="0.5" as="geometry"/><mxCell value="GNDA" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="11" vertex="1" connectable="0" Component="1" CellType="Component" symbol="PWR" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="270" y="470" width="40" height="80" as="geometry"/><Object id="997" name="GNDA" svg_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A_thumbnail.svg" symbol_prefix="PWR" component_library="http://localhost/api/libraries/14/" description="Power symbol creates a global label with name "GNDA" , analog ground" data_link="" full_name="PWR-GNDA-1-A" keyword="power-flag" as="CompObject"><Array as="alternate_component"/></Object><Object NAME="GNDA" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="GNDA" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="13" vertex="1" connectable="0" Component="1" CellType="Component" symbol="PWR" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="730" y="470" width="40" height="80" as="geometry"/><Object id="997" name="GNDA" svg_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A_thumbnail.svg" symbol_prefix="PWR" component_library="http://localhost/api/libraries/14/" description="Power symbol creates a global label with name "GNDA" , analog ground" data_link="" full_name="PWR-GNDA-1-A" keyword="power-flag" as="CompObject"><Array as="alternate_component"/></Object><Object NAME="GNDA" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="14" vertex="1" Pin="1" pinType="Output" PinNumber="1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="20" y="39" width="0.5" height="0.5" as="geometry"/><mxCell value="GNDA" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="13" vertex="1" connectable="0" Component="1" CellType="Component" symbol="PWR" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="730" y="470" width="40" height="80" as="geometry"/><Object id="997" name="GNDA" svg_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A_thumbnail.svg" symbol_prefix="PWR" component_library="http://localhost/api/libraries/14/" description="Power symbol creates a global label with name "GNDA" , analog ground" data_link="" full_name="PWR-GNDA-1-A" keyword="power-flag" as="CompObject"><Array as="alternate_component"/></Object><Object NAME="GNDA" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="V1.1" style="exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" id="15" edge="1" node="V1.1" sourceVertex="3" targetVertex="6" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" tarx="0" tary="0"><mxGeometry relative="1" as="geometry"><Array as="points"><mxPoint x="290" y="200"/><mxPoint x="520" y="200"/><mxPoint x="520" y="200"/></Array></mxGeometry><Object as="properties"/></mxCell><mxCell value="0" style="exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" id="16" edge="1" node="0" sourceVertex="4" targetVertex="12" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" tarx="0" tary="0"><mxGeometry relative="1" as="geometry"/><Object as="properties"/></mxCell><mxCell value="R1.2" style="exitX=1;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" id="17" edge="1" node="R1.2" sourceVertex="7" targetVertex="9" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" tarx="0" tary="0"><mxGeometry relative="1" as="geometry"><Array as="points"><mxPoint x="520" y="319"/><mxPoint x="520" y="389"/></Array></mxGeometry><Object as="properties"/></mxCell><mxCell value="0" style="exitX=1;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" id="18" edge="1" node="0" sourceVertex="10" targetVertex="14" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" tarx="0" tary="0"><mxGeometry relative="1" as="geometry"/><Object as="properties"/></mxCell></root></mxGraphModel>', - name: 'Shunt Clipper', - description: 'A Clipper circuit in which the diode is connected in shunt to the input signal and that attenuates the positive portions of the waveform, is termed as Positive Shunt Clipper.', - media: 'gallery4.png', - shared: true - }, - { - save_id: 'gallery5', - data_dump: '<mxGraphModel><root><mxCell id="0" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><Object as="properties"/></mxCell><mxCell id="1" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><Object as="properties"/></mxCell><mxCell value="V1
DC 0 SIN 0 1 200" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="2" vertex="1" connectable="0" Component="1" CellType="Component" symbol="V" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="190" y="270" width="120" height="120" as="geometry"/><Object id="835" name="VSOURCE" svg_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A_thumbnail.svg" symbol_prefix="V" component_library="http://localhost/api/libraries/10/" description="Voltage source symbol for simulation only" data_link="~" full_name="V-VSOURCE-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="V1" NAME="VSOURCE" N1="" N2="" VALUE="DC 0 SIN 0 1 200" EXTRA_EXPRESSION="" MODEL="" VALUE_UNIT="V" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="3" vertex="1" Pin="1" pinType="Input" PinNumber="1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="60" width="0.5" height="0.5" as="geometry"/><mxCell value="V1
DC 0 SIN 0 1 200" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="2" vertex="1" connectable="0" Component="1" CellType="Component" symbol="V" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="190" y="270" width="120" height="120" as="geometry"/><Object id="835" name="VSOURCE" svg_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A_thumbnail.svg" symbol_prefix="V" component_library="http://localhost/api/libraries/10/" description="Voltage source symbol for simulation only" data_link="~" full_name="V-VSOURCE-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="V1" NAME="VSOURCE" N1="" N2="" VALUE="DC 0 SIN 0 1 200" EXTRA_EXPRESSION="" MODEL="" VALUE_UNIT="V" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="2" style="align=right;verticalAlign=bottom;rotation=0" id="4" vertex="1" Pin="1" pinType="Input" PinNumber="2" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="60" y="119" width="0.5" height="0.5" as="geometry"/><mxCell value="V1
DC 0 SIN 0 1 200" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="2" vertex="1" connectable="0" Component="1" CellType="Component" symbol="V" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="190" y="270" width="120" height="120" as="geometry"/><Object id="835" name="VSOURCE" svg_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/V-VSOURCE-1-A_thumbnail.svg" symbol_prefix="V" component_library="http://localhost/api/libraries/10/" description="Voltage source symbol for simulation only" data_link="~" full_name="V-VSOURCE-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="V1" NAME="VSOURCE" N1="" N2="" VALUE="DC 0 SIN 0 1 200" EXTRA_EXPRESSION="" MODEL="" VALUE_UNIT="V" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="C1
2u" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="5" vertex="1" connectable="0" Component="1" CellType="Component" symbol="C" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="520" y="290" width="60" height="100" as="geometry"/><Object id="834" name="CAP" svg_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A_thumbnail.svg" symbol_prefix="C" component_library="http://localhost/api/libraries/10/" description="Capacitor symbol for simulation only" data_link="~" full_name="C-CAP-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="C1" NAME="CAP" N1="" N2="" VALUE="2u" EXTRA_EXPRESSION="" MODEL="" UNIT="F" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="6" vertex="1" Pin="1" pinType="Output" PinNumber="1" ConnectedNode="R1.1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="30" width="0.5" height="0.5" as="geometry"/><mxCell value="C1
2u" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="5" vertex="1" connectable="0" Component="1" CellType="Component" symbol="C" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="520" y="290" width="60" height="100" as="geometry"/><Object id="834" name="CAP" svg_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A_thumbnail.svg" symbol_prefix="C" component_library="http://localhost/api/libraries/10/" description="Capacitor symbol for simulation only" data_link="~" full_name="C-CAP-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="C1" NAME="CAP" N1="" N2="" VALUE="2u" EXTRA_EXPRESSION="" MODEL="" UNIT="F" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="2" style="align=right;verticalAlign=bottom;rotation=0" id="7" vertex="1" Pin="1" pinType="Output" PinNumber="2" ConnectedNode="R1.2" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="30" y="99" width="0.5" height="0.5" as="geometry"/><mxCell value="C1
2u" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="5" vertex="1" connectable="0" Component="1" CellType="Component" symbol="C" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="520" y="290" width="60" height="100" as="geometry"/><Object id="834" name="CAP" svg_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A_thumbnail.svg" symbol_prefix="C" component_library="http://localhost/api/libraries/10/" description="Capacitor symbol for simulation only" data_link="~" full_name="C-CAP-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="C1" NAME="CAP" N1="" N2="" VALUE="2u" EXTRA_EXPRESSION="" MODEL="" UNIT="F" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="R1
1k" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="8" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="450" y="290" width="16" height="100" as="geometry"/><Object id="836" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/10/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R1" NAME="R" N1="" N2="" VALUE="1k" EXTRA_EXPRESSION="" MODEL="" VALUE_UNIT="Ohm" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="9" vertex="1" Pin="1" pinType="Output" PinNumber="1" ConnectedNode="R1.1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="8" width="0.5" height="0.5" as="geometry"/><mxCell value="R1
1k" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="8" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="450" y="290" width="16" height="100" as="geometry"/><Object id="836" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/10/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R1" NAME="R" N1="" N2="" VALUE="1k" EXTRA_EXPRESSION="" MODEL="" VALUE_UNIT="Ohm" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="2" style="align=right;verticalAlign=bottom;rotation=0" id="10" vertex="1" Pin="1" pinType="Output" PinNumber="2" ConnectedNode="R1.2" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="8" y="99" width="0.5" height="0.5" as="geometry"/><mxCell value="R1
1k" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="8" vertex="1" connectable="0" Component="1" CellType="Component" symbol="R" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="450" y="290" width="16" height="100" as="geometry"/><Object id="836" name="R" svg_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/R-R-1-A_thumbnail.svg" symbol_prefix="R" component_library="http://localhost/api/libraries/10/" description="Resistor symbol for simulation only" data_link="~" full_name="R-R-1-A" keyword="resistor simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="R1" NAME="R" N1="" N2="" VALUE="1k" EXTRA_EXPRESSION="" MODEL="" VALUE_UNIT="Ohm" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="C2
1u" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="11" vertex="1" connectable="0" Component="1" CellType="Component" symbol="C" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="640" y="440" width="60" height="100" as="geometry"/><Object id="834" name="CAP" svg_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A_thumbnail.svg" symbol_prefix="C" component_library="http://localhost/api/libraries/10/" description="Capacitor symbol for simulation only" data_link="~" full_name="C-CAP-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="C2" NAME="CAP" N1="" N2="" VALUE="1u" EXTRA_EXPRESSION="" MODEL="" UNIT="F" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="12" vertex="1" Pin="1" pinType="Output" PinNumber="1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="30" width="0.5" height="0.5" as="geometry"/><mxCell value="C2
1u" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="11" vertex="1" connectable="0" Component="1" CellType="Component" symbol="C" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="640" y="440" width="60" height="100" as="geometry"/><Object id="834" name="CAP" svg_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A_thumbnail.svg" symbol_prefix="C" component_library="http://localhost/api/libraries/10/" description="Capacitor symbol for simulation only" data_link="~" full_name="C-CAP-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="C2" NAME="CAP" N1="" N2="" VALUE="1u" EXTRA_EXPRESSION="" MODEL="" UNIT="F" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="2" style="align=right;verticalAlign=bottom;rotation=0" id="13" vertex="1" Pin="1" pinType="Output" PinNumber="2" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="30" y="99" width="0.5" height="0.5" as="geometry"/><mxCell value="C2
1u" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="11" vertex="1" connectable="0" Component="1" CellType="Component" symbol="C" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="640" y="440" width="60" height="100" as="geometry"/><Object id="834" name="CAP" svg_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/pspice/C-CAP-1-A_thumbnail.svg" symbol_prefix="C" component_library="http://localhost/api/libraries/10/" description="Capacitor symbol for simulation only" data_link="~" full_name="C-CAP-1-A" keyword="simulation" as="CompObject"><Array as="alternate_component"/></Object><Object PREFIX="C2" NAME="CAP" N1="" N2="" VALUE="1u" EXTRA_EXPRESSION="" MODEL="" UNIT="F" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="GNDA" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="14" vertex="1" connectable="0" Component="1" CellType="Component" symbol="PWR" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="230" y="550" width="40" height="80" as="geometry"/><Object id="997" name="GNDA" svg_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A_thumbnail.svg" symbol_prefix="PWR" component_library="http://localhost/api/libraries/14/" description="Power symbol creates a global label with name "GNDA" , analog ground" data_link="" full_name="PWR-GNDA-1-A" keyword="power-flag" as="CompObject"><Array as="alternate_component"/></Object><Object NAME="GNDA" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="15" vertex="1" Pin="1" pinType="Output" PinNumber="1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="20" y="39" width="0.5" height="0.5" as="geometry"/><mxCell value="GNDA" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="14" vertex="1" connectable="0" Component="1" CellType="Component" symbol="PWR" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="230" y="550" width="40" height="80" as="geometry"/><Object id="997" name="GNDA" svg_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A_thumbnail.svg" symbol_prefix="PWR" component_library="http://localhost/api/libraries/14/" description="Power symbol creates a global label with name "GNDA" , analog ground" data_link="" full_name="PWR-GNDA-1-A" keyword="power-flag" as="CompObject"><Array as="alternate_component"/></Object><Object NAME="GNDA" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="GNDA" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="16" vertex="1" connectable="0" Component="1" CellType="Component" symbol="PWR" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="650" y="550" width="40" height="80" as="geometry"/><Object id="997" name="GNDA" svg_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A_thumbnail.svg" symbol_prefix="PWR" component_library="http://localhost/api/libraries/14/" description="Power symbol creates a global label with name "GNDA" , analog ground" data_link="" full_name="PWR-GNDA-1-A" keyword="power-flag" as="CompObject"><Array as="alternate_component"/></Object><Object NAME="GNDA" as="properties"/></mxCell><mxCell value="1" style="align=right;verticalAlign=up;rotation=0" id="17" vertex="1" Pin="1" pinType="Output" PinNumber="1" CellType="This is where you say what the vertex is" Component="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0"><mxGeometry x="20" y="39" width="0.5" height="0.5" as="geometry"/><mxCell value="GNDA" style="shape=image;fontColor=blue;image=../kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg;imageVerticalAlign=bottom;verticalAlign=bottom;imageAlign=bottom;align=bottom;spacingLeft=25" id="16" vertex="1" connectable="0" Component="1" CellType="Component" symbol="PWR" pinType=" " Pin="0" PinNumber="0" PinName="" sourceVertex="0" targetVertex="0" tarx="0" tary="0" as="ParentComponent"><mxGeometry x="650" y="550" width="40" height="80" as="geometry"/><Object id="997" name="GNDA" svg_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A.svg" thumbnail_path="kicad-symbols/symbol_svgs/power/PWR-GNDA-1-A_thumbnail.svg" symbol_prefix="PWR" component_library="http://localhost/api/libraries/14/" description="Power symbol creates a global label with name "GNDA" , analog ground" data_link="" full_name="PWR-GNDA-1-A" keyword="power-flag" as="CompObject"><Array as="alternate_component"/></Object><Object NAME="GNDA" as="properties"/></mxCell><Object as="properties"/></mxCell><mxCell value="0" style="exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" id="18" edge="1" node="0" sourceVertex="4" targetVertex="15" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" tarx="0" tary="0"><mxGeometry relative="1" as="geometry"/><Object as="properties"/></mxCell><mxCell value="R1.2" style="exitX=1;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" id="19" edge="1" node="R1.2" sourceVertex="10" targetVertex="7" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" tarx="0" tary="0"><mxGeometry relative="1" as="geometry"><Array as="points"><mxPoint x="460" y="410"/><mxPoint x="540" y="410"/></Array></mxGeometry><Object as="properties"/></mxCell><mxCell value="R1.1" style="exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" id="20" edge="1" node="R1.1" sourceVertex="9" targetVertex="6" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" tarx="0" tary="0"><mxGeometry relative="1" as="geometry"><Array as="points"><mxPoint x="460" y="300"/><mxPoint x="460" y="270"/><mxPoint x="551" y="270"/></Array></mxGeometry><Object as="properties"/></mxCell><mxCell value="R1.1" style="exitX=1;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;" id="21" edge="1" node="R1.1" sourceVertex="3" targetVertex="20" tarx="500" tary="270" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName=""><mxGeometry relative="1" as="geometry"><mxPoint x="500" y="270" as="targetPoint"/><Array as="points"><mxPoint x="250" y="220"/><mxPoint x="500" y="240"/></Array></mxGeometry><Object as="properties"/></mxCell><mxCell value="R1.2" style="exitX=1;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;" id="22" edge="1" node="R1.2" sourceVertex="12" targetVertex="19" tarx="510" tary="410" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName=""><mxGeometry relative="1" as="geometry"><mxPoint x="510" y="410" as="targetPoint"/></mxGeometry><Object as="properties"/></mxCell><mxCell value="0" style="exitX=1;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;" id="23" edge="1" node="0" sourceVertex="13" targetVertex="17" CellType="This is where you say what the vertex is" pinType=" " Component="0" Pin="0" PinNumber="0" PinName="" tarx="0" tary="0"><mxGeometry relative="1" as="geometry"/><Object as="properties"/></mxCell></root></mxGraphModel>', - name: 'RC Circuit ( Parallel )', - description: 'An RC circuit is a circuit with both a resistor (R) and a capacitor (C). RC circuits are freqent element in electronic devices.', - media: 'gallery5.png', - shared: true - } ] export default GallerySchSample |