Specializing output files
Specializing output files
(OP)
Hello everybody
I want ABAQUS produces only ".msg" files after running models. I'm running a lot of models by a batch file and you know I need just msg files not other files and some of them will occupy too much space like odb files which lead me to some trouble. I'm using a code like this How can modify it? Any help or suggestion greatly appreciated.
***********************************************************************************
echo off
set /p counter=Enter your first file number: %=%
set /p endFiNu=Enter your last file number: %=%
:loop
IF %counter% gtr %endFiNu% GOTO END
echo File Number: %counter%
call abaqus j=%counter% memory="8000" cpus=7 -seq
SET /a counter=%counter%+1
GOTO LOOP
:end
***********************************************************************************
I want ABAQUS produces only ".msg" files after running models. I'm running a lot of models by a batch file and you know I need just msg files not other files and some of them will occupy too much space like odb files which lead me to some trouble. I'm using a code like this How can modify it? Any help or suggestion greatly appreciated.
***********************************************************************************
echo off
set /p counter=Enter your first file number: %=%
set /p endFiNu=Enter your last file number: %=%
:loop
IF %counter% gtr %endFiNu% GOTO END
echo File Number: %counter%
call abaqus j=%counter% memory="8000" cpus=7 -seq
SET /a counter=%counter%+1
GOTO LOOP
:end
***********************************************************************************





RE: Specializing output files
http://www.eng-tips.com/faqs.cfm?fid=376
http://www.eng-tips.com/faqs.cfm?fid=1083
RE: Specializing output files
RE: Specializing output files
ECHO Y | DEL *%counter%.dat*
ECHO Y | DEL *%counter%.inp*
ECHO Y | DEL *%counter%.com*
ECHO Y | DEL *%counter%.odb*
ECHO Y | DEL *%counter%.prt*
ECHO Y | DEL *%counter%.sim*
ECHO Y | DEL *%counter%.sta*
ECHO Y | DEL *%counter%.log*