Hallo everybody,
I would like to launch a gnuplot script file from fortran.
I tried this:
h=system('D:\gpt35win\wgnuplot.exe gnuplot> load''surface''')
where surface is the script that I would like to launch. But it didn't work.
I am using the gnuplot version for windows.
Could anybody...
Hallo everybody,
I want to launch a program and at the moment I`m using this command:
Call system('C:\abaqus\6.6-1\exec\abq661.exe job="'str'"')
but the problem is that while the simulation is still running my fortran program go to the following line and read the results file of the...
I found out:
str2='C:\abaqus\6.6-1\exec\abq661.exe job="plate_crack_xx"'
Do i=5,10
Write(str2(50:51),'(i2.2)') i
Call system(str2(1:52))
End do
thanks
aJCU
Hi GulliPe,
thanks again for the advice.
I`m trying to do the same in order to launch those input file but I cannot find the way. What I`m trying to do is soemthing like this:
Program test
character*12 str
str = 'Prova_xx.inp'
Do i=1,50
Write(str(13:14),'(i2.2)') i
Call...
Hallo everybody,
I would like to write in fortran different input file like:
test_1.inp
test_2.inp
.
.
.
test_50.inp
I would like to do something like this:
do i=1:50
Open(unit=2,access='sequential',file='prova_'i'.inp'
&,status='replace')
end do
but how can I pass from the number i to the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.