Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: aJCU
  • Order by date
  1. aJCU

    fortran and gnuplot

    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...
  2. aJCU

    launching a program

    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...
  3. aJCU

    write several file

    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
  4. aJCU

    write several file

    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...
  5. aJCU

    write several file

    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...

Part and Inventory Search

Back
Top