Difference between revisions of "Creating sync IO of many posix files"

From PHASTA Wiki
Jump to: navigation, search
 
Line 1: Line 1:
Within the directory above N-procs_case, copy Converter script and the Converter's Input Creation Scrips from the following paths:
+
Within the directory above <code>N-procs_case</code>, copy Converter script and the Converter's Input Creation Scrips from the following paths:
  
/projects/tools/Models/STG/FlatPlate/STG_Plate/RunNew/runConvertO2N.sh
+
/projects/tools/Models/STG/FlatPlate/STG_Plate/RunNew/runConvertO2N.sh
/projects/tools/Models/STG/FlatPlate/STG_Plate/RunNew/create_IO_O2N_input.sh
+
/projects/tools/Models/STG/FlatPlate/STG_Plate/RunNew/create_IO_O2N_input.sh
  
 
execute a loop over the time steps (s)(ex:s=0,1,2,3)to make a "N"-procs_case into "x" Sync-IO files
 
execute a loop over the time steps (s)(ex:s=0,1,2,3)to make a "N"-procs_case into "x" Sync-IO files
  
 +
for s in {0..3}; do
 +
./create_IO_O2N_input.sh $s N x;
 +
./runConvertO2N.sh;
 +
done
  
for s in {0..3}; do
+
This will create a directory with the syncIO file as <code>./N-Procs_case-SyncIO-x</code>
./create_IO_O2N_input.sh $s N x;
 
./runConvertO2N.sh;
 
done
 
 
 
This will create a directory with the syncIO file as ./N-Procs_case-SyncIO-x
 

Latest revision as of 16:17, 13 July 2020

Within the directory above N-procs_case, copy Converter script and the Converter's Input Creation Scrips from the following paths:

/projects/tools/Models/STG/FlatPlate/STG_Plate/RunNew/runConvertO2N.sh
/projects/tools/Models/STG/FlatPlate/STG_Plate/RunNew/create_IO_O2N_input.sh

execute a loop over the time steps (s)(ex:s=0,1,2,3)to make a "N"-procs_case into "x" Sync-IO files

for s in {0..3}; do
./create_IO_O2N_input.sh $s N x;
./runConvertO2N.sh;
done

This will create a directory with the syncIO file as ./N-Procs_case-SyncIO-x