Question:

How to use Fortran read file grid points from Gridgen, save as matrix point?

by  |  earlier

0 LIKES UnLike

aeronomics

 Tags:

   Report

2 ANSWERS


  1. First of all, don't believe the first poster concerning Fortran.  Secondly, I'm not quite sure what you are trying to accomplish.  If you have the file format for your Gridgen file, then you can just put together a quick routine like the following:

    OPEN (10, Gridgen_file)

    DO i = 1, file_len

        READ (10,format_str) variable_list

    END DO

    The information could be stored as a series of character strings, a series of vectors, or a one large matrix.  Can you clarify what is to be done with the data once the data file is read?


  2. You can't get there from here. No one uses Fortran.

Question Stats

Latest activity: earlier.
This question has 2 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.