Problems with no pspice template

Thread Starter

darkknight

Joined Oct 7, 2009
41
Hi,

I am trying to build a half wave rectifier however when i try to proceed with the simulation i am getting several errors and not quite sure how to resolve them. The error i am getting is in regard my diode (WARNING(ORNET-1119): No PSpiceTemplate for D1, ignoring ) Any help would be deeply appreciated
here is the simulation log

Rich (BB code):
** Creating circuit file "lab3.cir"
Rich (BB code):
Rich (BB code):
** WARNING: THIS AUTOMATICALLY GENERATED FILE MAY BE OVERWRITTEN BY SUBSEQUENT SIMULATIONS
 
*Libraries: 
* Profile Libraries :
* Local Libraries :
* From [PSPICE NETLIST] section of C:\Users\David\AppData\Roaming\SPB_16.6\cdssetup\OrCAD_PSpice/16.6.0/PSpice.ini file:
.lib "nomd.lib" 
 
*Analysis directives: 
.TRAN  0 1000ns 0 
.OPTIONS ADVCONV
.PROBE64 V(alias(*)) I(alias(*)) W(alias(*)) D(alias(*)) NOISE(alias(*)) 
.INC "..\SCHEMATIC1.net" 
 
 
 
**** INCLUDING SCHEMATIC1.net ****
* source LAB3
R_R1         0 N00229  2.2k TC=0,0 
X_TX1    N00130 N00137 N00236 0 SCHEMATIC1_TX1 
V_V2         N00130 N00137  
+SIN 0 25 1k 0 0 0
R_R2         N00130 N00130  10 TC=0,0 
 
.subckt SCHEMATIC1_TX1 1 2 3 4  
K_TX1         L1_TX1 L2_TX1 1
L1_TX1         1 2 10uH
L2_TX1         3 4 10uH
.ends SCHEMATIC1_TX1
 
**** RESUMING lab3.cir ****
.END
 
ERROR(ORPSIM-15141): Less than 2 connections at node N00229.
 
ERROR(ORPSIM-15142): Node N00130 is floating
 
ERROR(ORPSIM-15142): Node N00137 is floating
 
ERROR(ORPSIM-15143): Voltage source and/or inductor loop involving V_V2. You may break the loop by adding a series resistance



Thanks in advance
 

tindel

Joined Sep 16, 2012
936
There seems to be a couple different errors...

1. Looks like you have your transformer connected directly to a voltage source. That's find in theory, but not in real life, and pSpice takes that into account and sees it as a short... you have to have a resistor in series there... even 0.000000001 ohms will work.
2. You have a resistor that is only connected on one side to ground - delete that resistor.
 

Thread Starter

darkknight

Joined Oct 7, 2009
41
first off thanks however i am still getting the error after adding the resistor for the vsin, regarding the seconf resistor i need it there due to our lab project. Here is an updated log

Rich (BB code):
** Creating circuit file "try1.cir" 
** WARNING: THIS AUTOMATICALLY GENERATED FILE MAY BE OVERWRITTEN BY SUBSEQUENT SIMULATIONS

*Libraries: 
* Profile Libraries :
* Local Libraries :
* From [PSPICE NETLIST] section of C:\Users\David\AppData\Roaming\SPB_16.6\cdssetup\OrCAD_PSpice/16.6.0/PSpice.ini file:
.lib "nomd.lib" 

*Analysis directives: 
.TRAN  0 1000ns 0 
.OPTIONS ADVCONV
.PROBE64 V(alias(*)) I(alias(*)) W(alias(*)) D(alias(*)) NOISE(alias(*)) 
.INC "..\SCHEMATIC1.net" 



**** INCLUDING SCHEMATIC1.net ****
* source LAB3
R_R1         0 N00231  2.2k TC=0,0 
X_TX1    N00130 0 N00236 0 SCHEMATIC1_TX1 
V_V2         N00130 0  
+SIN 0 25 1k 0 0 0
R_R2         N00130 N00130  10 TC=0,0 

.subckt SCHEMATIC1_TX1 1 2 3 4  
K_TX1         L1_TX1 L2_TX1 1
L1_TX1         1 2 10uH
L2_TX1         3 4 10uH
.ends SCHEMATIC1_TX1

**** RESUMING try1.cir ****
.END

ERROR(ORPSIM-15141): Less than 2 connections at node N00231.

ERROR(ORPSIM-15143): Voltage source and/or inductor loop involving V_V2. You may break the loop by adding a series resistance

 

tindel

Joined Sep 16, 2012
936
It appears that you still have the same 2 problems... The 10 ohm resistor needs to be between the power supply and the transformer not shorted...

Regardless if you're lab has a floating resistor or not pspice won't like it
 
Top