Search found 1 match
- Thu Dec 15, 2016 3:07 pm
- Forum: Parallel Processing
- Topic: IDA Analysis Using OpenSeesMP
- Replies: 1
- Views: 4301
Re: IDA Analysis Using OpenSeesMP
Hi samansadeghii, It seems that you have an error in your script. You have given your counter the name of `count`, but when assigning the pid, you used: ``` if {[expr $num % $np]==$pid} { ``` You should change it to: ``` if {[expr $count % $np]==$pid} { ``` This should solve the problem. I could als...