How to cancel verify windows in ANSYS batch mode
How to cancel verify windows in ANSYS batch mode
(OP)
Hi, I am running ANSYS in a batch mode and when I doing the mesh of my strucuture at a secpecific point I have a irregular mesh and ANSYS ask me if I really want this iregular mesh and I said yes when runing de APDL code in GUI interface.
But when I run the code in batch mode ANSYS doesn't mesh thoose volumes.
There any command to say YES when runing ANSYS in batch mode?
Thanks a lot,
Bruno Serrano
But when I run the code in batch mode ANSYS doesn't mesh thoose volumes.
There any command to say YES when runing ANSYS in batch mode?
Thanks a lot,
Bruno Serrano





RE: How to cancel verify windows in ANSYS batch mode
More detail: I am trying to export path data for multiple load steps. The basic functionality is:
[Define path and output file]
*DO,i,1,NLOADS
SET,i,LAST,1
PDEF,UX,U,X,AVG
...etc...
PAGET,pdata,TABLE
/OUTPUT,,output_file,,APPEND
*VWRITE,pdata
/OUTPUT
*ENDDO
On every loop, I get a Verify message, "Redimensioning parameter PDATA will erase all current values. SHOULD THE PAGE COMMAND BE EXECUTED?" The answer is always yes.
Alternately, is there some way to clear or delete the PDATA array without hard-coding its location for the *DEL command?
RE: How to cancel verify windows in ANSYS batch mode
Try:
/nerr,0,,,,0
/uis,msgpop,3
after the code in APDL file.
Good luck
RE: How to cancel verify windows in ANSYS batch mode