define ansys in hyperstudy
Altair Forum User
Altair Employee
Dear ALL
I modified ansys.bat from tutorials\hst\Ansys.
set ANSYS110_DIR=C:\Program Files\ANSYS Inc\v110\ANSYS
set ANSYS_SYSDIR=intel
C:\Program Files\ANSYS Inc\v110\ANSYS\bin\intel\ansys -b plate.inp
When I did 'Do nominal run' ansys always can't to solve it .
Have anyone ever do shpe optimization with ansys?
Please give me some information.
Best Regards,
Jim
Tagged:
0
Answers
-
Jim,
You need to put quote around the value. Notice that the path has space in it. Something like this:
set ANSYS110_DIR='C:\Program Files\ANSYS Inc\v110\ANSYS'
set ANSYS_SYSDIR=intel
'C:\Program Files\ANSYS Inc\v110\ANSYS\bin\intel\ansys' -b plate.inp --> You may not need quotes here.
0 -
Thank you for the great offer.0