Continue to Site

Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

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

How to output the calculated result into the file?

Status
Not open for further replies.

cmgauss

Mechanical
Oct 17, 2003
1
I want to name the file after the calculation. But I didn't know how to do that. Normally I gave a name in my program and after finishing the calculation, I need to change the name. What I want to do is that I want to do some calculation continually, but I hope when the program finished every turn, the result can be saved in different named file. Anyone knows how to do that? Thanks for your help!
 
Replies continue below

Recommended for you

1. Issue an OPEN statement, selecting a default name.
2. Write stuff into the file, then issue a CLOSE of it.
3. Do an internal write to a string variable, to create a string like: RENAME default_file_id final_fault_id
where default_file_id is what you called it when you opened it and final_fault_id is what your program finally decides it ought to be called.
4. Issue a CALL SYSTEM(string) to do the rename.
5. Loop back to step 1 for the next file.

This presumes you are using an OS and Fortran system that let you execute system commands from Fortran and do the rename this way. All of Lahey's Fortran systems for Windows have let you do this, and most or all others as well. There would be some system-dependent issues, I imagine. You didn't specify either OS or Fortran system, so we can't give you anything more than generic answers.
 
You can
generate a file name (e.g. datxxx.dat where xxx is a 3 digit #)
open
write
close
increment xxx


<nbucska@pcperipherals.com>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor