Fortran Creating a Program to Copy & Generate Coordinates in .inp File

AI Thread Summary
The discussion centers on creating a program that reads a .txt file and writes its content to a .inp file, while preserving the exact formatting, including spaces. The user, Charles Pearce, seeks a solution that allows for dynamic updates to the header file without losing formatting integrity. AlephZero suggests a method using Fortran that involves reading lines into a character string and writing only up to the last non-blank character, which theoretically preserves spacing. However, Charles expresses concerns that this method may not meet his needs due to the importance of exact spacing, prompting him to consider writing a batch file in C instead. The conversation highlights the challenges of handling formatted text files in Fortran, particularly with respect to trailing spaces and the limitations of certain compilers.
charlie87
Messages
8
Reaction score
0
The issue I am having is that I want to create a program which reads a .txt file and copies it exactly to a .inp file followed by some coordinates which I am generating. the . txt file is being used as a header file which can be changed outside the program but once the program is read in the new variables are automatically updated.

Below is the text which I want to read. is there a command for read all?

$title
simple wing
$datacheck
0.
$symmetry - xz plane of symmetry
=misymm mjsymm
1. 0.
$mach number
=amach
.6
$cases - no. of solutions
=nacase
1.
$angles-of-attack
=alpc
4.
=alpha(1) alpha(2) alpha(3)
0. 10. 0.
$printout options
=isings igeomp isingp icontp ibconp iedgep
4. 0. 0. 1. 1. 0.
=ipraic nexdgn ioutpr ifmcpr
.0 .0 1. 0. 3.
$references for accumulated forces and moments
=xref yref zref nref
46. 0. 0.
=sref bref cref dref
2400. 60. 40. 90.
$points - wing-body with composite panels
=kn cpnorm
1. 2.
=kt
1.
=nm nn netname



I than want this text to be written to a new file "pan.inp" in the same format.

Regards,
Charles Pearce
 

Attachments

Technology news on Phys.org


It's messy to make a completely general solution to this in Fortran. The way I would probably do that would be to write a 5-line C function that did the copying and call it from the Fortran program.

But judging from your sample data, you don't need a completely general solution, because you only have printable text and the lines of the file are reasonably short. So...

* Declare a character string longer than the longest line of text (e.g. 1000 characters should be plenty)
* Start an "infinite" loop.
* Read a line from the file using A format. This will pad out the line with blank characters.
Use the "END=" option to break out of the loop at the end of the file.
* Find where the last non-blank character is.
* Write the correct length substring to the output file, again using A format.
* End of loop.
 


thanks AlephZero,

however this route will not work for me as I need the exact number of spaces between each word or number. the formatting for this would be too time consuming so i will create a batch file in C which copies instead.

regards,
Charles
 


charlie87 said:
this route will not work for me as I need the exact number of spaces between each word or number.

AlephZero's method does preserve all the spaces between numbers or words on each line. It's just that the read operation adds spaces to the end of each line in order to fill out the fixed-size character array that you're reading into. His method ignores those extra spaces at the end of the array when writing it to the other file, by writing only up to the last non-blank character.

If your data does have spaces at the ends of lines, and those spaces are significant, then AlephZero's method will not work for you.
 


jtbell said:
If your data does have spaces at the ends of lines, and those spaces are significant, then AlephZero's method will not work for you.

Some compilers for older versions of fortran used to have a non-standard Q format, which returned the exact number of characters on a line including trailing spaces, but that isn't available in gcc fortran, for example.

On the other hand gcc fortran does have intrinsic functions FGetC and FPutC which will do I/O one character at a time, not one record (line) at a time.
 
Dear Peeps I have posted a few questions about programing on this sectio of the PF forum. I want to ask you veterans how you folks learn program in assembly and about computer architecture for the x86 family. In addition to finish learning C, I am also reading the book From bits to Gates to C and Beyond. In the book, it uses the mini LC3 assembly language. I also have books on assembly programming and computer architecture. The few famous ones i have are Computer Organization and...
I have a quick questions. I am going through a book on C programming on my own. Afterwards, I plan to go through something call data structures and algorithms on my own also in C. I also need to learn C++, Matlab and for personal interest Haskell. For the two topic of data structures and algorithms, I understand there are standard ones across all programming languages. After learning it through C, what would be the biggest issue when trying to implement the same data...

Similar threads

Replies
2
Views
2K
Replies
5
Views
2K
Replies
16
Views
5K
Replies
2
Views
3K
Replies
7
Views
2K
Replies
6
Views
3K
Back
Top