Scheduled Downtime
On Friday 21 April 2023 @ 5pm MT, this website will be down for maintenance and expected to return online the morning of 24 April 2023 at the latest

i won

husiyang22

New member
as a beginner, i wonder the differences of the 3 files.."module_initialize_tropical_cyclone.f90","module_initialize_tropical_cyclone.F","module_initialize_tropical_cyclone.o". i just want to find out which is correct if i want to change parameters of the initial fields of TC
 

Attachments

  • 1761612849397.png
    1761612849397.png
    180.3 KB · Views: 2
The .F version = source code -> edit that one
The .f90 version = preprocessed file by compiler (will be recreated from source file every time you compile the code)
The .o file = compiled file (final result of the compilation)
 
Top