vote up 8 vote down star
3

Is there any good reason to develop a new software project with Fortran anymore?

flag

Also, see stackoverflow.com/questions/953869/… – ldigas Aug 26 at 20:04
Also related: stackoverflow.com/questions/1227338/… – ire_and_curses Oct 11 at 15:53

8 Answers

vote up 21 vote down check

Yes:

  • if you need to deal with vectors and matrixes a lot
  • if you do lots of heavy numerical work
  • if you want to make use of some of the most optimised numerical libraries in the world
  • if you are into supercomputing

But there is of course no need to limit yourself to one language. One project I worked on, for example, used C++ and a GUI library to draw models of oil-field pipe networks, and then used FORTRAN to optimise the flow of gas and liquids through the pipes.

link|flag
3  
As Neil doesn't quite say but implies: If you need to do parallel computing (not distributed, not concurrent, but parallel) then Fortran is a good choice since both shared memory and distributed memory parallelisation is well supported for Fortran. – High-Performance Mark Aug 26 at 16:13
1  
Just to add to Mark's comment: Drafts of fortran standards are available on the net for free download, and anyone wishing to see how parallel processing is implemened can easily do so. – ldigas Aug 26 at 19:44
vote up 1 vote down

Just google it.

link|flag
1  
lmgtfy.com/q=modern+fortran – AnotherOne Oct 6 at 23:05
vote up 6 vote down

This question is so old.

There are many reasons for using fortran, many of them have already been stated so I won't repeat those.

A small digression, if I may - although unrelated to your question by title, the post at the link may also clear away some doubts.

But, allow me to add just one more reason, which as far as one can see, nobody thought to mention still. That is, and this of course depends on the type and projected life length of your project, is that fortran today has extremelly good backing. Technical and financial wise - I would dare to say even, that maybe only a handful of languages have available the number of compilers fortran has (we're talking still actively developed ones here), and with the names like Intel, Lahey, and NAG it is not going anywhere in the not so near future. With its principle of strong backward compatibility it is a language that fits very good for long term projects.

This being a forum oriented mostly at professional programmers, not engineers and alike, one of course can expect what is usually the common answer to this kind of question - but remember, they said in the 80ties that "fortran was dead", they repeated it in the 90ties, and they're still (I see) saying it today.

Check out the first link, it may clear away some doubts on the fortran-python-matlab trilemma :); if you still feel uncertain, refine your question a little.

link|flag
good point - I was going to mention "portability" as one of the advantages in my answer – Neil Butterworth Aug 26 at 16:30
They also said that Cobol is dead, but it's not, and still I would not start a project in Cobol today. Would you ? – Stefano Borini Aug 26 at 16:36
@Stefano: Personally, I don't much like COBOL, and don't want to work with it. However, if by some strange twist of fate I've got a project where COBOL would be appropriate and a staff that's well-versed in it, I don't see why not. – PTBNL Aug 26 at 16:50
3  
@Stefano - "fortran is used by academia" ? You mean "and ..." or "only by". Because, if you mean the latter, then I will just assume you're trolling, and stop wasting my time explaining. If you mean the first, then I will assume you're ill informed. As far as second comment goes, on my university it is taught on mec.eng. and nav.arch. college, arch. college, geo. college, and natural sciences. – ldigas Aug 26 at 19:38
1  
@Stefano: If Idigas has spoken to people who actually use Fortran in industry, his evidence is objective. You will find that if Unis teach Fortran, it is BECAUSE industry demands it. Depts that teach stuff that nobody wants/needs to learn any more lose enrolment numbers. – Stephen C Aug 27 at 7:47
show 15 more comments
vote up 5 vote down

No (with clauses):

Fortran is a language with a very low expressivity (see footnote), unexistent libraries for common non-numeric tasks, an awful handling of strings, no exception handling, a dangerous system of variable declaration (unless overridden), no decent IDE, an obnoxious standardization, no decent and fully compliant free compiler (g95/gfortran do not support the full language specs, and I heard they have troubles), incredibly limited namespacing capabilities, among many others.

It makes absolutely no sense today to start developing a large project in Fortran, It would be like ploughing a vast terrain with a hand plough. Doable, but a waste of time. Many laboratories directed by the new generation of professors are ditching Fortran and moving either to C++ or to python. Young computer-savy students don't want to touch Fortran code with a 3 foot pole, because they know that better alternatives exist, so only the unsavy will accept it, and generally produce low quality code as a consequence of their low interest in programming as such. You are therefore screening out people interested in programming. Moreover, if the code for whatever reason happen to go commercial (for example, a spin-off), then you will have to rewrite it: hiring will be a nightmare otherwise.

You should use a highly expressive language as much as you can, reducing lines of code and bugs, improving development speed, code clarity and testability. Then, profile your code, and optimize the really time-critical parts in Fortran. On this, I am all for it (but consider C first).

More on the point http://forthescience.org/blog/2009/02/22/why-is-most-science-programming-done-in-fortran/

Footnote: See this page on the pedia

Language    Statements ratio[25]      Lines ratio[26]
C           1                         1
C++         2.5                       1
FORTRAN     2.5                       0.8
Java        2.5                       1.5
Perl        6                         6
Smalltalk   6                         6.25
Python      6                         6.5

According to the pedia, the data come from Code Complete. You are also welcome to play with this page for a comparison of different languages for a set of benchmark codes. Comparing a language with itself brings the absolute values.

link|flag
Ome of wikipedias less accurate tables, one feels. – Neil Butterworth Aug 26 at 16:25
probably, but I wouldn't challenge the expressivity of fortran against the python's one no matter how inaccurate is this table. – Stefano Borini Aug 26 at 16:26
Compouter-savy ? Or computer sciences ones ? There is a difference. – ldigas Aug 26 at 16:27
1  
As far as your comments goes, it is not only not a language with low expressivility, but also a language with high readability, has decent string handling (when will people start seeing that fortran77 is not the latest ?), several compilers use IDE of VS, some have their own, it has one of the clearest standards and clearly defined what is part of the standard and what not. ... I won't even bother with the rest. – ldigas Aug 26 at 16:29
I wouldn't define a language that does not allow you to allocate a string of arbitrary length as decent. And let's not go into the detail of passing the string to C: two parameters, one parameter? – Stefano Borini Aug 26 at 16:32
show 15 more comments
vote up 4 vote down

Scientific numerical software is often still written in Fortran, for the reasons given in other answers. I'd just add that in 2008 I heard an Intel employee say that their high-performance Fortran compiler outsells their equivalent C compiler. The Fortran compiler sales were also growing faster.

link|flag
vote up 3 vote down

There are many good reasons for using Fortran. How often do you hear of someone hacking a fortran app? It's not like the language is broken. Sure there are some nice features that wouldn't be readily available but you can still make it work.

Just think of it as retro programming or vintage development.

link|flag
1  
Security through obscurity is a bad idea. – Wahnfrieden Aug 26 at 16:01
last time I checked the code still worked and is being used. Just because you don't use it does not mean it's obscure (see markj's answer) – Badfish Aug 26 at 16:05
@Wahnfrieden - I wouldn't say "obscurity" is the term that fits - fortran programs 50 years old still compile without change, and you don't see any "fortran obfuscation contents" out there, do you ? Sadly almost all other languages offer them. – ldigas Aug 26 at 16:25
vote up 3 vote down

...At a conference on computational physics in South Korea (CCP2006), most of the plenary speakers who talked about codes used Fortran. Perhaps scientists prefer Fortran because they're productive when using it.

from here

link|flag
vote up 7 vote down

Scientific computing is often written in Fortran for a few reasons:

  • Scientists don't know other languages,
  • You can get better performance in Fortran than C for scientific code (lots of massive arrays), because of aliasing restrictions in Fortran, which allow the compiler to optimize better. This can make a 30% difference in speed,
  • There are a lot of scientific libraries in Fortran.

So, I would say the only good reason would be you're working with scientists (like computational chemists or physicists, say) who have a lot of entrenched fortran, dont want to learn new stuff, and the speed is super important.

Otherwise, there are probably better ways to achieve the same results (C++ libraries or Python libraries, say).

link|flag
1  
Many of your points are good, but I want to say that - even though I'm a big Python fan - I doubt that you will get the performance from Python that you get from FORTRAN for many of the applications FORTRAN is used for. Where I work there are people who routinely send their stuff off to the supercomputing centers, and they're almost always using FORTRAN, and I've never heard of any of them using Python. I've not worked with C++, so won't address that. – PTBNL Aug 26 at 16:46
1  
@PTBNL: My impression is that Python and C++ can be used to glue together libraries which perform the really hard work. I'm not advocating doing computation in Python. – Paul Biggar Aug 26 at 17:16
Fortran is very easily connectable with py, and one of the newer standards also standardized a way of interfacing with C/++ – ldigas Aug 26 at 19:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.