|
[Sponsors] |
February 18, 2014, 06:02 |
CCM+ bash script output format
|
#1 |
Member
Join Date: Jan 2014
Posts: 40
Rep Power: 12 |
Hi,
I just got into CFD and CCM+, therefore I would like to have a look at different options and their consequences. To do this I wrote a little bash script with this command: /####/STAR-CCM+8.04.010/star/bin/starccm+ -power -np $prozessor -batch -time $file &>$file.log which works very well, as output, I get a batch.log and a batch@00010.sim file. My questions are: What does the 00010 stand for? Does this new file contain all necessary informations or does it contain the differences to the original file? Can I change the 00010 to something different? Thank you very much for all your ideas greetings hebeldebel |
|
February 20, 2014, 08:38 |
|
#2 |
Member
Join Date: Jan 2014
Posts: 40
Rep Power: 12 |
It seems to be the number of iterations it stopped at.
If anyone is interested, this is what my bash script looks like: Code:
#!/bin/bash echo "number of cpus:" read prozessor echo "$prozessor processors have been chosen" Ort=$(/bin/pwd) for file in $Ort/*.sim do echo "$file has been started" /pathto/STAR-CCM+8.04.010/star/bin/starccm+ -power -np $prozessor -batch -time $file &>$file.log echo "$file has been finished" done |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Output transient file to csv | Ben | CFX | 3 | September 23, 2008 09:17 |
Tecplot output format in 2-D cartesian grid | jinwon park | Tecplot | 5 | April 7, 2008 07:28 |
Gambit output files format | B. R. Guirguis | Main CFD Forum | 4 | April 7, 2006 21:03 |
Gambit output files format | B. R. Guirguis | FLUENT | 1 | April 6, 2006 18:30 |
CCOSILAB -- output data in Excel Format | carlie | Main CFD Forum | 0 | June 9, 2005 17:11 |