comp.lang.fortran
  Home FAQ Contact Sign in
comp.lang.fortran only
 
Advanced search
May 2008
motuwethfrsasuw
   1234 18
567891011 19
12131415161718 20
19202122232425 21
262728293031  22
2008
 Jan   Feb   Mar   Apr 
 May   Jun   Jul   Aug 
 Sep   Oct   Nov   Dec 
2008 2007 2006  
total
comp.lang.fortran Profile…
RELATED GROUPS

POPULAR GROUPS

 Up
  Re: Reply to: Career Bureaucrat Rises to Prominence in Housing Crisis         


Author: Tim Prince
Date: May 31, 2008 22:04

Damian wrote:
> On Jun 1, 10:34 am, user1 example.net> wrote:
>> Jan Gerrit Kootstra wrote:
>>
>> [snip]
>>
>>
>>
>>> The size of the usergroup is far under estimated, in engineering and
>>> science it is one of the major programming languages.
>> Are there solid statistics somewhere that indicate the use of Fortran in
>> science and engineering applications exceeds the use of C, C++, Java ?
>
> A 2006 survey of United States Department of Defense High Performance
> Computing users showed a bit less than 60%% of users write "prototyping
> software" (not sure why that was the focus) in Fortran and roughly 85%%
> write in C/C+/C#. Obviously, many are engaged in multi-language
> development, which I think will become even more common with the new C
> interoperability features of Fortran 2003. I can't find the survey
> results online anywhere, but I can send a PDF to anyone who wants a ...
Show full article (1.31Kb)
2 Comments
  Module compile order         


Author: Thomas Robitaille
Date: May 31, 2008 12:19

Hi everyone,

In a large project I have, two modules mutually depend on each other.
What is the best way to compile these?

For example, if I have:

A.f90 containing:

module A
use B
end module A

B.f90 containing:

module B
use A
end module B

and main.f90 containing:

program test
use A
use B
end program test

then for example, how can I compile these with a Makefile? (in one make
command if possible).
Show full article (0.46Kb)
4 Comments