S
Svenn Are Bjerkem
Guest
Hi,
to annotate my symbols I use
strcat(cdsParam(1) " Ohm")
for the illabel. Notice that it is a must to have that space, otherwise
1 Ohm become 1Ohm which is 10 hectometer. Nonsense in respect to
resistors, but how do you interpret
r=1Ohm
when looking quickly at it.
This make the symbols a bit more readable, specially when milli is in
play as 10m is more often read as 10 meters than 10 millisomething.
Specially a problems with transmission lines that are 10mm. Imagine
this: length=10m. So I decided to take the extra work to insert
strcat(cdsParam(2) "m")
to avoid stupid problems like this. Here the space is not needed as
there will be no problem with misunderstanding. 10m m does not look as
good as 10mm
For resistance and conductance there are the greek symbol Omega used.
(conductance on the head) Are these symbols available in any font used
with cadence and how do I use them. I tried
strcat(cdsParam(1) intToChar(234))
as ascii 234 is supposed to be the Omega in the extended ascii according
to www.lookuptables.com. Doesn't work as far as I can see, but no need
to hunt for something if it doesn't exist in the first place.
--
Svenn
to annotate my symbols I use
strcat(cdsParam(1) " Ohm")
for the illabel. Notice that it is a must to have that space, otherwise
1 Ohm become 1Ohm which is 10 hectometer. Nonsense in respect to
resistors, but how do you interpret
r=1Ohm
when looking quickly at it.
This make the symbols a bit more readable, specially when milli is in
play as 10m is more often read as 10 meters than 10 millisomething.
Specially a problems with transmission lines that are 10mm. Imagine
this: length=10m. So I decided to take the extra work to insert
strcat(cdsParam(2) "m")
to avoid stupid problems like this. Here the space is not needed as
there will be no problem with misunderstanding. 10m m does not look as
good as 10mm
For resistance and conductance there are the greek symbol Omega used.
(conductance on the head) Are these symbols available in any font used
with cadence and how do I use them. I tried
strcat(cdsParam(1) intToChar(234))
as ascii 234 is supposed to be the Omega in the extended ascii according
to www.lookuptables.com. Doesn't work as far as I can see, but no need
to hunt for something if it doesn't exist in the first place.
--
Svenn