Recent content by Carl Loomis-Anderson

  1. Carl Loomis-Anderson

    Fortran Fortran77 data compiler problem

    Thanks! I just tested it on my research and it had great results!
  2. Carl Loomis-Anderson

    Fortran Fortran77 data compiler problem

    I tried out perl and have made much quicker progress than with fortran. I am having a hangup though. The program is copying every line I don't need and not the line that I do need. #declare parameters say "what is the chemical formula?"; my $chem = <STDIN> ; chomp $chem; say $chem; say "what is...
  3. Carl Loomis-Anderson

    Fortran Fortran77 data compiler problem

    Thanks for the advice! I'll look into switching.
  4. Carl Loomis-Anderson

    Fortran Fortran77 data compiler problem

    So I am doing a chemical simulation of titans atmosphere and I have potentially 1000 data files to sort through to retrieve concentration values written in Double format. The issue is that each chemical has its own line with well over 80 columns (1993 currently, though it is subject to...
  5. Carl Loomis-Anderson

    Fortran Fortran77-- retrieve data from large source

    The output file is as such: CHEMA 0.000000D00 0.000000D00... CHEMB 0.000000D00 0.000000D00... there are a total of 459 different chemical species with 124 different points of data.
  6. Carl Loomis-Anderson

    Fortran Fortran77-- retrieve data from large source

    I'm currently doing a chemical model of Titan's atmosphere and the simulation outputs several files (up to 1000) and I need to get an array of data out of them from a specific section labeled with a chemical name (i.e HC5N) that has an arbitrary number of values (usually above 100). I've seen...
Back
Top