An expression is a sequence of variable names, constants, operators and functions that can be evaluated to yield a result. Expressions are required by four commands: Let, Curve, Plot and Show and they are also used in braced substitutions ) and if statements, while statements and for statements. This section describes expression syntax and how they are evaluated.
In this topic:
operators. Available operators are:
+ - * / ^ %'%' performs a remainder function
< > == <= >=Important: a single '=' can be used as equality operator if used in an if or while statement. In other places it is an assignment operator and '==' must be used for equality.
AND, OR, NOT, && || !Note: AND, OR, NOT are equivalent to && || ! respectively.
&'&' concatenates two strings.
( ) [ ] Unary - + NOT ! ^ * / % + - < > <= >= == AND && OR || & = ,
Let x = sqrt(16)will assign 4 to x.
function_name( [ argument, ...] )
NetName()function taking two arguments:
FFT( vout, 'Hanning')Functions don't just perform mathematical operations like square root. There are functions for string processing, functions which return information about some element of the program such as a schematic or graph, and there are user interface functions. Complete documentation on all available functions is given in Function Reference .
A braced substitution is an expression enclosed in curly braces '{' and '}'. When the script interpreter encounters a braced substitution, it evaluates the expression and substitutes the expression and the braces with the result of the evaluation - as if it had been typed in by the user. Braced substitutions are important because, with the exception of Let, Show, Plot and Curve, commands cannot accept expressions as arguments. For example, the Echo command displays in the message window the text following the Echo. If the command Echo x+2 was executed, the message x+2 would be displayed not the result of evaluating x+2. If instead the command was Echo { x+2 } the result of evaluating x+2 would be displayed.
If the expression inside the braces evaluates to a vector each element of the vector will be substituted. Note that the line length for commands is limited (although the limit is large - in excess of 2000 characters) so substituting vectors should be avoided unless it is known that the vector does not have many elements.
if {netname()} < 4.56 thenTo achieve the same result the result of the braced expression must be assigned to a variable e.g.:
let v = {netname()} if v < 4.56 then
[ expression1, expression2, ...]The result of a bracketed list is a vector of length equal to the number of expressions separated by commas. There must be at least one expression in a bracketed list - an empty list is not permitted. For example:
Let v = [3, 5, 7]assigns a vector of length 3 to v. So v[0]=3, v[1]=5 and v[2]=7. The expressions in a bracketed list may be any type, as long they are all the same. The following for example, is illegal:
Let v = [3, 'Hello', 'World']The second element is of type string whereas the first is real. The following example is however legal:
Let v = ['3', 'Hello', 'World']3 which is real has been replaced by '3' which is a string.
Most functions and operators expect their arguments to be of a particular type. For example the + operator expects each side to be a numeric (real or complex) type and not a string. Conversely, the & operator which concatenates strings naturally expects a string on each side. The majority of functions also expect a particular type as arguments, although there are some that can accept any type.
In the event that the type presented is wrong, SIMetrix will attempt to convert the value presented to the correct type. To convert a numeric value to a string is straightforward, the value is simply represented in ASCII form to a reasonable precision. When a string is presented but a numeric value is required, the string is treated as if it were an expression and is evaluated. If the evaluation is successful and resolves to the correct type the result is used as the argument to the operator or function. If the evaluation fails for any reason an error message will be displayed.
An alias is a special type of string. Alias strings hold an expression which is always evaluated when used. The simulator outputs some of its data in alias form to save memory and simulation time. For example, the currents into subcircuit pins are calculated by adding the currents of all devices within the subcircuit connected to that pin. If its efficient to do so, this current is not calculated during simulation. Instead the expression to perform that calculation is stored as an alias so that it can be calculated if needed. Aliases may also be created using the MakeAlias command.
◄ Variables, Constants and Types | Statements and Commands ▶ |