Zitat von THADDEUS EZE <[email protected]>: > > Hi All, > > Please how can I specify nodes in scenario generation to start from a > different number instead of 0? I mean having the > scenario generation start from say node_(10) instead of node_(0). > > Any help is appreciated please. > > Eze >
just do it. it's no matter how you call it. tcl parses only for text not for numbers. and, there's no need of increasing numbers. the brackets define your variable as an "array". so tcl differentiate between the entries. an example for 3 different nodes in one tcl-file: ... node(1.4) node(a) node(2) ...
