1. 程式人生 > >VS環境下除錯ABAQUS子程式的處理辦法

VS環境下除錯ABAQUS子程式的處理辦法

設定除錯環境

for中新增暫停程式碼

logical :: firstrun = .true.

integer tempvar

if(firstrun) then

write(*,*)"please input an integer:"

read(*,*)tempvar

firstrun = .false.

endif

tempvar =1234 !設定斷點

在ABAQUS command中啟動ABAQUS計算程式

在ABAQUS commond中加

call "C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\vcvarsall.bat" X64

call "C:\Program Files (x86)\Intel\Composer XE 2013 SP1\bin\ifortvars.bat" intel64 vs2012

在ABAQUS cae呼叫的luncher.bat中加入,ABAQUS Command中也需要寫入下列兩句才能除錯

abaqus job=job-1 user=umat.for int

將standard.exe程序在vs中附加