Maker Pro
Maker Pro

What have I done wrong NOW?

  • Thread starter ROBIN MARSTRAND
  • Start date
R

ROBIN MARSTRAND

Jan 1, 1970
0
Hello again, fellows.

I wonder if anyone can throw light on this ERROR. I keep getting errors of
one kind of another relating to Stimulus:-



* D:\ORCAD PROJECTS\TRIANGLE GENERATOR\triangle-gen.stl written on Mon Jun
30 23:30:42 2003
* by Stimulus Editor -- Serial Number: 1 -- Version 9.2
;!Stimulus Get
;! 50Hz-SINE Analog Tri-Normal Analog Tri-Inverse Analog
;!Ok
;!Plot Axis_Settings
;!Xrange 0s 60ms
;!Yrange 0 4
;!AutoUniverse
;!XminRes 1ns
;!YminRes 1n
;!Ok
..STIMULUS 50Hz-SINE SIN( 2 2 50 0 0 0 )
..STIMULUS Tri-Normal PULSE( 0 4 0 1m 1m 100n 2.0001m )
..STIMULUS Tri-Inverse PULSE( 0 4 1m 1m 1m 100n 2.0001m )
--------------------------------------------------------$
ERROR -- ANALOG .STIMULUS definition found, DIGITAL definition expected for:
"Tri-Inverse"

--------------------------------------------------------$
ERROR -- ANALOG .STIMULUS definition found, DIGITAL definition expected for:
"Tri-Normal"


I'd be grateful to know how to avoid these errors - it's very frustrating.
And I find it diffcult to believe that it is my fault, entirely - meaining;
their should be a better indication within ther program of what path to take
when setting up a stimulus. I read the manuals avidly but am able to forget
some areas when moving on to others!

F1 pressed with ERROR selectied seldom helps.

Best, robinease.
 
J

Jim Thompson

Jan 1, 1970
0
Hello again, fellows.

I wonder if anyone can throw light on this ERROR. I keep getting errors of
one kind of another relating to Stimulus:-



* D:\ORCAD PROJECTS\TRIANGLE GENERATOR\triangle-gen.stl written on Mon Jun
30 23:30:42 2003
* by Stimulus Editor -- Serial Number: 1 -- Version 9.2
;!Stimulus Get
;! 50Hz-SINE Analog Tri-Normal Analog Tri-Inverse Analog
;!Ok
;!Plot Axis_Settings
;!Xrange 0s 60ms
;!Yrange 0 4
;!AutoUniverse
;!XminRes 1ns
;!YminRes 1n
;!Ok
.STIMULUS 50Hz-SINE SIN( 2 2 50 0 0 0 )
.STIMULUS Tri-Normal PULSE( 0 4 0 1m 1m 100n 2.0001m )
.STIMULUS Tri-Inverse PULSE( 0 4 1m 1m 1m 100n 2.0001m )
--------------------------------------------------------$
ERROR -- ANALOG .STIMULUS definition found, DIGITAL definition expected for:
"Tri-Inverse"

--------------------------------------------------------$
ERROR -- ANALOG .STIMULUS definition found, DIGITAL definition expected for:
"Tri-Normal"


I'd be grateful to know how to avoid these errors - it's very frustrating.
And I find it diffcult to believe that it is my fault, entirely - meaining;
their should be a better indication within ther program of what path to take
when setting up a stimulus. I read the manuals avidly but am able to forget
some areas when moving on to others!

F1 pressed with ERROR selectied seldom helps.

Best, robinease.

Here's one I just made up using the Stimulus Editor as opposed to your
hand-written file.

You failed to declare a *SOURCE* name. Compare line by line....

* D:\Projects\xxxx.stl written on Thu Jul 10 14:19:52 2003
* by Stimulus Editor -- Serial Number: xxxxxxxxxx -- Version 9.2.3
;!Stimulus Get
;! V2 Analog
;!Ok
;!Plot Axis_Settings
;!Xrange 0s 1us
;!Yrange -600n 0
;!AutoUniverse
;!XminRes 1ns
;!YminRes 1n
;!Ok
..STIMULUS V2 PWL
+ TIME_SCALE_FACTOR = 1
+ VALUE_SCALE_FACTOR = 1
+ ( 0, 0 )
+ ( 3e-009, -4.94e-007 )
+ ( 5e-009, -4.92e-007 )
+ ( +1.93e-007, -4.99e-007 )
+ ( 2.06e-007, -3.49e-007 )
+ ( 2.48e-007, -4.09e-007 )
+ ( 2.71e-007, -3.03e-007 )
+ ( 2.96e-007, -2e-007 )
+ ( 3.35e-007, -2.5e-007 )
+ ( 3.77e-007, -2.48e-007 )
+ ( 4.14e-007, -1.52e-007 )
+ ( 4.77e-007, -9.7e-008 )
+ ( 5.26e-007, -1.5e-007 )
+ ( 5.59e-007, -2.46e-007 )
+ ( 6.26e-007, -2.5e-007 )
+ ( 6.5e-007, -3e-009 )

...Jim Thompson
 
Top