FORTRAN

FIELDS OF STUDY

Programming Languages; Software Engineering;

ABSTRACT

Fortran is the oldest programming still in common use, and is used primarily for scientific and engineering computations requiring complex mathematical calculations. Fortran has been continually revised since its development at IBM in the 1950s, and is used presently on “supercomputers” with parallel architecture. It is a robust language that is relatively easy to learn, and Fortran programs adhere to a strictly logical format.

PRINICIPAL TERMS

FORTRAN HISTORY AND DEVELOPMENT PROGRAM STRUCTURE

Like all programming languages, Fortran has its own syntax, or method in which program commands and statements must be written in order to be “understood” and carried out. A Fortran program is made up of subroutines and function segments that can be compiled independently. Subroutines are termed “external procedures,” and it is characteristic of both Fortran and ALGOL that procedures are only invoked as a result of explicit calls from within the main loop of the program or from another procedure within it. Each segment of the program has local data written into the source code, but additional data can be made available to more than one segment by storing it in blocks of code labeled COMMON. Each Fortran program begins with a statement of the name of the program, followed by the statement “implicit none,” and ends with an “end program” statement for that program, as




PRINICIPAL TERMS

Documentation phrases are added into a Fortran program using the ! character at the beginning of a line. Everything after the ! in that line is ignored by the Fortran compiler, allowing the programmer to describe what each program segment or line of code is intended to achieve. Following the “implicit none” statement, Fortran program have a block of type declaration statements to identify the nature of the variables being used in the program. For example, the type declaration statement




PRINICIPAL TERMS

identifies the variables x, y and z as real numbers. A block of executable statements then follows. These are the functions and relations that the program is to calculate. The executable statement block may include, for example, statements such as




PRINICIPAL TERMS

by which the user enters the two values for x and y from the keyboard. Their average value is calculated as the variable z, which is then printed to the default display device, usually the computer screen or an attached printer.

SAMPLE PROBLEM

Write a Fortran program that asks for the input of four values and outputs their average.

Answer:




PRINICIPAL TERMS

FORTRAN IN THE PRESENT DAY

The straightforward and strictly logical manner in which Fortran programs are written is very suitable for use in complex applications that call for close attention to detail, such as scientific and engineering calculations. This would account for the longevity of the Fortran programming language in those areas, and it is used extensively on modern supercomputers for numerical analysis of complex systems. The robust character of the Fortran programming language ensures that it will continue to be used well into the future.

—Richard M. Renneboog M.Sc.

Chivers, Ian, and Jane Sleightholme. Introduction to Programming With Fortran, with Coverage of Fortran 90, 95, 2003, 2008 and 77. 3rd ed., New York, NY: Springer, 2015. Print.

Counihan, Martin Fortran 95. Londion, UK: University College Press. 1996. Print.

Gehrke, Wilhelm. Fortran 90 Language Guide. New York, NY: Springer, 1995. Print.

Kupferschmid, Michael Classical Fortran Programming for Engineering and Scientific Applications. Boca Raton, FL: CRC Press, 2009. Print.

Metcalf, Michael, and John Reid. The F Programming Language. New York, NY: Oxford University Press, 1996. Print.

O'Regan, Gerard. A Brief History of Computing. 2nd ed., New York, NY: Springer-Verlag. 2012. Print.

Rajaraman, V. Computer Programming in Fortran 77. 4th ed., New Delhi, IND: Prentice-Hall of India Pvt., 2006. Print.

Scott, Michael L. Programming Language Pragmatics. 4th ed., Waltham, MA: Morgan Kaufmann, 2016. Print.