Free Essay

Fortran

In: Computers and Technology

Submitted By etohpraise
Words 10641
Pages 43
Richard Kass Winter 2004
FORTRAN TUTORIAL
(based on the information at: http://macams1.bo.infn.it/tutorial/)

1. What is Fortran? 2. Fortran basics 3. Variables, declarations, and types 4. Expressions and assignment 5. Logical expressions 6. The if statements 7. Loops 8. Arrays 9. Subprograms 10. Random numbers and Monte Carlo simulations 11. Simple input and output 12. Format statements 13. File I/O 14. Common blocks 15. data and block data 16. Debugging 17. Running Fortran on the Physics Department’s VAX (OHSTPY) computer 18. A sample Fortran program for Lab 1

1. WHAT IS FORTRAN?
Fortran is a general purpose programming language, mainly intended for mathematical computations in science applications (e.g. physics). Fortran is an acronym for FORmula TRANslation, and was originally capitalized as FORTRAN. However, following the current trend to only capitalize the first letter in acronyms, we will call it Fortran. Fortran was the first high-level programming language. The work on Fortran started in the 1950's at IBM and there have been many versions since. By convention, a Fortran version is denoted by the last two digits of the year the standard was proposed. Thus we have Fortran 66, Fortran 77 and Fortran 90 (95).

The most common Fortran version today is still Fortran 77, although Fortran 90 is growing in popularity. Fortran 95 is a revised version of Fortran 90 which is expected to be approved by ANSI soon (1996). There are also several versions of Fortran aimed at parallel computers. The most important one is High Performance Fortran (HPF), which is a de-facto standard.

Users should be aware that most Fortran 77 compilers allow a superset of Fortran 77, i.e. they allow non-standard extensions. In this tutorial we will emphasize standard ANSI Fortran 77.

History
One of the oldest programming languages, the FORTRAN was developed by a team of programmers at IBM led by John Backus, and was first published in 1957. The name FORTRAN is an acronym for FORmula TRANslation, because it was designed to allow easy translation of math formulas into code.

Often referred to as a scientific language, FORTRAN was the first high-level language, using the first compiler ever developed. Prior to the development of FORTRAN computer programmers were required to program in machine/assembly code, which was an extremely difficult and time consuming task, not to mention the dreadful chore of debugging the code. The objective during it's design was to create a programming language that would be: simple to learn, suitable for a wide variety of applications, machine independent, and would allow complex mathematical expressions to be stated similarly to regular algebraic notation. While still being almost as efficient in execution as assembly language. Since FORTRAN was so much easier to code, programmers were able to write programs 500% faster than before, while execution efficiency was only reduced by 20%, this allowed them to focus more on the problem solving aspects of a problem, and less on coding.

FORTRAN was so innovative not only because it was the first high-level language, but also because of it's compiler, which is credited as giving rise to the branch of computer science now known as compiler theory. Several years after it's release FORTRAN had developed many different dialects, (due to special tweaking by programmers trying to make it better suit their personal needs) making it very difficult to transfer programs from one machine to another.

These problems lead the American Standards Association (now known as the American National Standards Association) to release it's first Standard for a Programming Languagein 1966. This first standardized version has come to be known as FORTRAN '66 (aka.. FORTRAN IV).

Despite this standardization, a few years later, various new dialects began to surface again, requiring the Standards Association review the language again. This version is known as FORTRAN '77. This version was released in 1978 (it was called '77 because the Association began it's review in 1977), with several new features. Some of the more notable properties were; new error handling methods, and mechanisms for managing large-scale programs. The latest version; Fortran '90 (released in 1990, using the new capitalization scheme) added even more new features, such as support for: recursion, pointers, and for programmer-defined data types. {Fortran 90's future - Current research in complier theory involves equipping compilers to generate object code, that is able to exploit the capabilities of massively parallel computers. Thr Fortran 90 compilers are key targets of such research}

Significant Language Features
Some of the more significant features of the language are as listed below: • Simple to learn - when FORTRAN was design one of the objectives was to write a language that was easy to learn and understand. • Machine Independent - allows for easy transportation of a program from one machine to another. • More natural ways to express mathematical functions - FORTRAN permits even severely complex mathematical functions to be expressed similarly to regular algebraic notation. • Problem orientated language • Remains close to and exploits the available hardware • Efficient execution - there is only an approximate 20% decrease in efficiency as compared to assembly/machine code. • Ability to control storage allocation -programmers were able to easily control the allocation of storage (although this is considered to be a dangerous practice today, it was quite important some time ago due to limited memory. • More freedom in code layout - unlike assembly/machine language, code does not need to be laid out in rigidly defined columns, (though it still must remain within the parameters of the FORTRAN source code form).

Why learn Fortran?
Fortran is the dominant programming language used in scientific applications. It is therefore important for physics (or engineering) students to be able to read and modify Fortran code. From time to time, so-called experts predict that Fortran will rapidly fade in popularity and soon become extinct. This may actually happen as C (or C++) is rapidly growing in popularity. However, previous predictions of the downfall of Fortran have always been wrong. Fortran is the most enduring computer programming language in history. One of the main reasons Fortran has survived and will survive is software inertia. Once a company has spent many people-years and perhaps millions of dollars on a software product, it is unlikely to try to translate the software to a different language. Reliable software translation is a very difficult task and there’s 40 years of Fortran code to replace!

Portability
A major advantage Fortran has is that it is standardized by ANSI (American National Standards Institute) and ISO (International Standards Organization). Consequently, if your program is written in ANSI Fortran 77 then it will run on any computer that has a Fortran 77 compiler. Thus, Fortran programs are portable across computer platforms.

2. FORTRAN 77 BASICS
A Fortran program is just a sequence of lines of text. The text has to follow a certain syntax to be a valid Fortran program. We start by looking at a simple example where we calculate the area of a circle:

program circle real r, area c This program reads a real number r and prints c the area of a circle with radius r. write (*,*) 'Give radius r:' read (*,*) r area = 3.14159*r*r write (*,*) 'Area = ', area stop end

The lines that begin with a "c" are comments and have no purpose other than to make the program more readable for humans. Originally, all Fortran programs had to be written in all upper-case letters. Most people now write lower-case since this is more legible.

Program organization
A Fortran program generally consists of a main program (or driver) and possibly several subprograms (or procedures or subroutines). For now we will assume all the statements are in the main program; subprograms will be treated later. The structure of a main program is:

program name declarations statements stop end

In this tutorial, words that are in italics should not be taken as literal text, but rather as a generic description. The stop statement is optional and may seem superfluous since the program will stop when it reaches the end anyway but it is recommended to always terminate a program with the stop statement to emphasize that the execution flow stops there.

Column position rules
Fortran 77 is not a free-format language, but has a very strict set of rules for how the source code should be formatted. The most important rules are the column position rules:

Col. 1 : Blank, or a "c" or "*" for comments
Col. 2-5 : Statement label (optional)
Col. 6 : Continuation of previous line (optional)
Col. 7-72 : Statements
Col. 73-80: Sequence number (optional, rarely used today)

Most lines in a Fortran 77 program starts with 6 blanks and ends before column 72, i.e. only the statement field is used. Note that Fortran 90 allows free format.

Comments
A line that begins with the letter "c" or an asterisk in the first column is a comment. Comments may appear anywhere in the program. Well-written comments are crucial to program readability. Commercial Fortran codes often contain about 50% comments. You may also encounter Fortran programs that use the exclamation mark (!) for comments. This is highly non-standard in Fortran 77, but is allowed in Fortran 90. The exclamation mark may appear anywhere on a line (except in positions 2-6).

Continuation
Occasionally, a statement does not fit into one single line. One can then break the statement into two or more lines, and use the continuation mark in position 6. Example:

c23456789 (This demonstrates column position!)

c The next statement goes over two physical lines area = 3.14159265358979 + * r * r

Any character can be used instead of the plus sign as a continuation character. It is considered good programming style to use either the plus sign, an ampersand, or numbers (2 for the second line, 3 for the third, and so on).

Blank spaces
Blank spaces are ignored in Fortran 77. So if you remove all blanks in a Fortran 77 program, the program is still syntactically correct but almost unreadable for humans.

3. VARIABLES, TYPES, AND DECLARATIONS

Variable names
Variable names in Fortran consist of 1-6 characters chosen from the letters a-z and the digits 0-9. The first character must be a letter. (Note: Fortran 90 allows variable names of arbitrary length). Fortran 77 does not distinguish between upper and lower case, in fact, it assumes all input is upper case. However, nearly all Fortran 77 compilers will accept lower case. If you should ever encounter a Fortran 77 compiler that insists on upper case it is usually easy to convert the source code to all upper case.

Types and declarations
Every variable should be defined in a declaration. This establishes the type of the variable. The most common declarations are:

integer list of variables real list of variables double precision list of variables complex list of variables logical list of variables character list of variables

The list of variables should consist of variable names separated by commas. Each variable should be declared exactly once. If a variable is undeclared, Fortran 77 uses a set of implicit rules to establish the type. This means all variables starting with the letters i-n are integers and all others are real. Many old Fortran 77 programs uses these implicit rules, but you should not! The probability of errors in your program grows dramatically if you do not consistently declare your variables.

Integers and floating point variables
Fortran 77 has only one type for integer variables. Integers are usually stored as 32 bits (4 bytes) variables. Therefore, all integer variables should take on values in the range [-m,m] where m is approximately 2*10^9.

Fortran 77 has two different types for floating point variables, called real and double precision. While real is often adequate, some numerical calculations need very high precision and double precision should be used. Usually a real is a 4 byte variable and the double precision is 8 bytes, but this is machine dependent. Some non-standard Fortran versions use the syntax real*8 to denote 8 byte floating point variables.

The parameter statement
Some constants appear many times in a program. It is then often desirable to define them only once, in the beginning of the program. This is what the parameter statement is for. It also makes programs more readable. For example, the circle area program should have been written like this:

program circle real r, area, pi parameter (pi = 3.14159) c This program reads a real number r and prints c the area of a circle with radius r. write (*,*) 'Give radius r:' read (*,*) r area = pi*r*r write (*,*) 'Area = ', area stop end

The syntax of the parameter statement is parameter (name = constant, ... , name = constant)

The rules for the parameter statement are: • The "variable" defined in the parameter statement is not a variable but rather a constant whose value can never change • A "variable" can appear in at most one parameter statement • The parameter statement(s) must come before the first executable statement

Some good reasons to use the parameter statement are: • it helps reduce the number of typos • it is easy to change a constant that appears many times in a program
4. EXPRESSIONS AND ASSIGNMENT

Constants
The simplest form of an expression is a constant. There are 6 types of constants, corresponding to the 6 data types. Here are some integer constants: 1 0 -100 32767 +15

Then we have real constants: 1.0 -0.25 2.0E6 3.333E-1

The E-notation means that you should multiply the constant by 10 raised to the power following the "E". Hence, 2.0E6 is two million, while 3.333E-1 is approximately one third.

For constants that are larger than the largest real allowed, or that requires high precision, double precision should be used. The notation is the same as for real constants except the "E" is replaced by a "D". Examples:

2.0D-1 1D99

Here 2.0D-1 is a double precision one-fifth, while 1D99 is a one followed by 99 zeros.

The next type is complex constants. This is designated by a pair of constants (integer or real), separated by a comma and enclosed in parentheses. Examples are:

(2, -3) (1., 9.9E-1)

The first number denotes the real part and the second the imaginary part.

The fifth type is logical constants. These can only have one of two values: .TRUE. .FALSE.

Note that the dots enclosing the letters are required.

The last type is character constants. These are most often used as an array of characters, called a string. These consist of an arbitrary sequence of characters enclosed in apostrophes (single quotes):

'ABC' 'Anything goes!' 'It is a nice day'

Strings and character constants are case sensitive. A problem arises if you want to have an apostrophe in the string itself. In this case, you should double the apostrophe: 'It''s a nice day'

Expressions
The simplest expressions are of the form operand operator operand and an example is x + y

The result of an expression is itself an operand, hence we can nest expressions together like x + 2 * y

This raises the question of precedence: Does the last expression mean x + (2*y) or (x+2)*y? The precedence of arithmetic operators in Fortran 77 are (from highest to lowest):

** {exponentiation} *,/ {multiplication, division} +,- {addition, subtraction}

All these operators are calculated left-to-right, except the exponentiation operator **, which has right-to-left precedence. If you want to change the default evaluation order, you can use parentheses.

The above operators are all binary operators. there is also the unary operator - for negation, which takes precedence over the others. Hence an expression like -x+y means what you would expect.

Extreme caution must be taken when using the division operator, which has a quite different meaning for integers and reals. If the operands are both integers, an integer division is performed, otherwise a real arithmetic division is performed. For example, 3/2 equals 1, while 3./2. equals 1.5.

Assignment
The assignment has the form variable_name = expression

The interpretation is as follows: Evaluate the right hand side and assign the resulting value to the variable on the left. The expression on the right may contain other variables, but these never change value! For example, area = pi * r**2 does not change the value of pi or r, only area.
Type conversion
When different data types occur in the same expression, type conversion has to take place, either explicitly or implicitly. Fortran will do some type conversion implicitly. For example, real x x = x + 1 will convert the integer one to the real number one, and has the desired effect of incrementing x by one. However, in more complicated expressions, it is good programming practice to force the necessary type conversions explicitly. For numbers, the following functions are available:

int real dble ichar char

The first three have the obvious meaning. ichar takes a character and converts it to an integer, while char does exactly the opposite.

Example: How to multiply two real variables x and y using double precision and store the result in the double precision variable w: w = dble(x)*dble(y)

Note that this is different from w = dble(x*y)

5. LOGICAL EXPRESSIONS
Logical expressions can only have the value .TRUE. or .FALSE.. A logical expression can be formed by comparing arithmetic expressions using the following relational operators:

.LT. means less than (=) .EQ. equal (=) .NE. not equal (/=)

So you cannot use symbols like < or = for comparisons in Fortran 77.

For example: (x.eq.y) is valid while (x=y) is not valid in Fortran 77.

Logical expressions can be combined by the logical operators .AND. .OR. .NOT. which have the obvious meaning.

Logical variables and assignment
Truth values can be stored in logical variables. The assignment is analogous to the arithmetic assignment. Example:

logical a, b a = .TRUE. b = a .AND. 3 .LT. 5/2
The order of precedence is important, as the last example shows. The rule is that arithmetic expressions are evaluated first, then relational operators, and finally logical operators. Hence b will be assigned .FALSE. in the example above.

Logical variables are seldom used in Fortran. But logical expressions are frequently used in conditional statements like the if statement.

6. THE IF STATEMENTS
An important part of any programming language are the conditional statements. The most common such statement in Fortran is the ifstatement, which actually has several forms. The simplest one is the logical if statement: if (logical expression) executable statement

This has to be written on one line. This example finds the absolute value of x: if (x .LT. 0) x = -x

If more than one statement should be executed inside the if, then the following syntax should be used: if (logical expression) then statements endif

The most general form of the if statement has the following form: if (logical expression) then statements elseif (logical expression) then statements : : else statements endif

The execution flow is from top to bottom. The conditional expressions are evaluated in sequence until one is found to be true. Then the associated code is executed and the control jumps to the next statement after the endif.

Nested if statements if statements can be nested in several levels. To ensure readability, it is important to use proper indentation. Here is an example:

if (x .GT. 0) then if (x .GE. y) then write(*,*) 'x is positive and x = y' else write(*,*) 'x is positive but x < y' endif elseif (x .LT. 0) then write(*,*) 'x is negative' else write(*,*) 'x is zero' endif

You should avoid nesting many levels of if statements since things get hard to follow.

7. LOOPS
For repeated execution of similar things, loops are used. If you are familiar with other programming languages you have probably heard about for-loops, while-loops, and until-loops. Fortran 77 has only one loop construct, called the do-loop. The do-loop corresponds to what is known as a for-loop in other languages. Other loop constructs have to be simulated using the if and goto statements.

do-loops
The do-loop is used for simple counting. Here is a simple example that prints the cumulative sums of the integers from 1 through n (assume n has been assigned a value elsewhere):

integer i, n, sum sum = 0 do 10 i = 1, n sum = sum + i write(*,*) 'i =', i write(*,*) 'sum =', sum 10 continue

The number 10 is a statement label. Typically, there will be many loops and other statements in a single program that require a statement label. The programmer is responsible for assigning a unique number to each label in each program (or subprogram). Recall that column positions 2-5 are reserved for statement labels. The numerical value of statement labels has no significance, so any integer numbers can be used. Typically, most programmers increment labels by 10 at a time.

The variable defined in the do-statement is incremented by 1 by default. However, you can define any other integer to be the step. This program segment prints the even numbers between 1 and 10 in decreasing order:

integer i

do 20 i = 10, 1, -2 write(*,*) 'i =', i 20 continue

The general form of the do loop is as follows:

do label var = expr1, expr2, expr3 statements label continue

var is the loop variable (often called the loop index) which must be integer. expr1 specifies the initial value of var, expr2 is the terminating bound, and expr3 is the increment (step).

Note: The do-loop variable must never be changed by other statements within the loop! This will cause great confusion.

Many Fortran 77 compilers allow do-loops to be closed by the enddo statement. The advantage of this is that the statement label can then be omitted since it is assumed that an enddo closes the nearest previous do statement. The enddo construct is widely used, but it is not a part of ANSI Fortran 77.

while-loops
The most intuitive way to write a while-loop is

while (logical expr) do statements enddo

or alternatively,

do while (logical expr) statements enddo

The statements in the body will be repeated as long as the condition in the while statement is true. Even though this syntax is accepted by many compilers, it is not ANSI Fortran 77. The correct way is to use if and goto:

label if (logical expr) then statements goto label endif

Here is an example that calculates and prints all the powers of two that are less than or equal to 100:

integer n

n = 1 10 if (n .le. 100) then n = 2*n write (*,*) n goto 10 endif

until-loops
If the termination criterion is at the end instead of the beginning, it is often called an until-loop. The pseudocode looks like this:

do statements until (logical expr)

Again, this should be implemented in Fortran 77 by using if and goto:

label continue statements if (logical expr) goto label
Note that the logical expression in the latter version should be the negation of the expression given in the pseudocode!

8. ARRAYS
Many scientific computations use vectors and matrices. The data type Fortran uses for representing such objects is the array. A one-dimensional array corresponds to a vector, while a two-dimensional array corresponds to a matrix. To fully understand how this works in Fortran 77, you will have to know not only the syntax for usage, but also how these objects are stored in memory in Fortran 77.

One-dimensional arrays
The simplest array is the one-dimensional array, which is just a linear sequence of elements stored consecutively in memory. For example, the declaration real a(20) declares a as a real array of length 20. That is, a consists of 20 real numbers stored contiguously in memory. By convention, Fortran arrays are indexed from 1 and up. Thus the first number in the array is denoted by a(1) and the last by a(20). However, you may define an arbitrary index range for your arrays using the following syntax:

real b(0:19), weird(-162:237)

Here, b is exactly similar to a from the previous example, except the index runs from 0 through 19. weird is an array of length 237-(-162)+1 = 400.

The type of an array element can be any of the basic data types. Examples:

integer i(10) logical aa(0:1) double precision x(100)

Each element of an array can be thought of as a separate variable. You reference the i'th element of array a by a(i). Here is a code segment that stores the 10 first square numbers in the array sq:

integer i, sq(10)

do 100 i = 1, 10 sq(i) = i**2 100 continue

A common bug in Fortran is that the program tries to access array elements that are out of bounds or undefined. This is the responsibility of the programmer, and the Fortran compiler will not detect any such bugs!

Two-dimensional arrays
Matrices are very important in linear algebra. Matrices are usually represented by two-dimensional arrays. For example, the declaration real A(3,5) defines a two-dimensional array of 3*5=15 real numbers. It is useful to think of the first index as the row index, and the second as the column index. Hence we get the graphical picture:

(1,1) (1,2) (1,3) (1,4) (1,5) (2,1) (2,2) (2,3) (2,4) (2,5) (3,1) (3,2) (3,3) (3,4) (3,5)

Two-dimensional arrays may also have indices in an arbitrary defined range. The general syntax for declarations is:

name (low_index1 : hi_index1, low_index2 : hi_index2)

The total size of the array is then

size = (hi_index1-low_index1+1)*(hi_index2-low_index2+1)

It is quite common in Fortran to declare arrays that are larger than the matrix we want to store. (This is because Fortran does not have dynamic storage allocation.) This is perfectly legal. Example:

real A(3,5) integer i,j c c We will only use the upper 3 by 3 part of this array. c do 20 j = 1, 3 do 10 i = 1, 3 a(i,j) = real(i)/real(j) 10 continue 20 continue

The elements in the submatrix A(1:3,4:5) are undefined. Do not assume these elements are initialized to zero by the compiler (some compilers will do this, but not all).

Storage format for 2-dimensional arrays
Fortran stores higher dimensional arrays as a contiguous linear sequence of elements. It is important to know that 2-dimensional arrays are stored by column. So in the above example, array element (1,2) will follow element (3,1). Then follows the rest of the second column, thereafter the third column, and so on.

Consider again the example where we only use the upper 3 by 3 submatrix of the 3 by 5 array A(3,5). The 9 interesting elements will then be stored in the first nine memory locations, while the last six are not used. This works out neatly because the leading dimension is the same for both the array and the matrix we store in the array. However, frequently the leading dimension of the array will be larger than the first dimension of the matrix. Then the matrix will not be stored contiguously in memory, even if the array is contiguous. For example, suppose the declaration was A(5,3) instead. Then there would be two "unused" memory cells between the end of one column and the beginning of the next column (again we are assuming the matrix is 3 by 3).

This may seem complicated, but actually it is quite simple when you get used to it. If you are in doubt, it can be useful to look at how the address of an array element is computed. Each array will have some memory address assigned to the beginning of the array, that is element (1,1). The address of element (i,j) is then given by addr[A(i,j)] = addr[A(1,1)] + (j-1)*lda + (i-1) where lda is the leading (i.e. column) dimension of A. Note that lda is in general different from the actual matrix dimension. Many Fortran errors are caused by this, so it is very important you understand the distinction!

Multi-dimensional arrays
Fortran 77 allows arrays of up to seven dimensions. The syntax and storage format are analogous to the two-dimensional case, so we will not spend time on this.

The dimension statement
There is an alternate way to declare arrays in Fortran 77. The statements

real A, x dimension x(50) dimension A(10,20) are equivalent to real A(10,20), x(50)

This dimension statement is considered old-fashioned style today.

9. SUBPROGRAMS
When a programs is more than a few hundred lines long, it gets hard to follow. Fortran codes that solve real engineering problems often have tens of thousands of lines. The only way to handle such big codes, is to use a modular approach and split the program into many separate smaller units called subprograms.

A subprogram is a (small) piece of code that solves a well defined subproblem. In a large program, one often has to solve the same subproblems with many different data. Instead of replicating code, these tasks should be solved by subprograms . The same subprogram can be invoked many times with different input data.

Fortran has two different types of subprograms, called functions and subroutines.

Functions
Fortran functions are quite similar to mathematical functions: They both take a set of input arguments (parameters) and return a value of some type. In the preceding discussion we talked about user defined subprograms. Fortran 77 also has some built-in functions.

A simple example illustrates how to use a function:

x = cos(pi/3.0)

Here cos is the cosine function, so x will be assigned the value 0.5 (if pi has been correctly defined; Fortran 77 has no built-in constants). There are many built-in functions in Fortran 77. Some of the most common are:

abs absolute value min minimum value max maximum value sqrt square root sin sine cos cosine tan tangent atan arctangent exp exponential (natural) log logarithm (natural)

In general, a function always has a type. Most of the built-in functions mentioned above, however, are generic. So in the example above, pi and x could be either of type real or double precision. The compiler would check the types and use the correct version of cos (real or double precision). Unfortunately, Fortran is not really a polymorphic language so in general you have to be careful to match the types of your variables and your functions!

Now we turn to the user-written functions. Consider the following problem: A meteorologist has studied the precipitation levels in the Bay Area and has come up with a model r(m,t) where r is the amount of rain, m is the month, and t is a scalar parameter that depends on the location. Given the formula for r and the value of t, compute the annual rainfall.

The obvious way to solve the problem is to write a loop that runs over all the months and sums up the values of r. Since computing the value of r is an independent subproblem, it is convenient to implement it as a function. The following main program can be used:

program rain real r, t, sum integer m

read (*,*) t sum = 0.0 do 10 m = 1, 12 sum = sum + r(m, t) 10 continue write (*,*) 'Annual rainfall is ', sum, 'inches'

stop end

In addition, the function r has to be defined as a Fortran function. The formula the meteorologist came up with was

r(m,t) = t/10 * (m**2 + 14*m + 46) if this is positive r(m,t) = 0 otherwise

The corresponding Fortran function is

real function r(m,t) integer m real t r = 0.1*t * (m**2 + 14*m + 46) if (r .LT. 0) r = 0.0 return end

We see that the structure of a function closely resembles that of the main program. The main differences are: • Functions have a type. This type must also be declared in the calling program. • The return value should be stored in a variable with the same name as the function. • Functions are terminated by the return statement instead of stop.

To sum up, the general syntax of a Fortran 77 function is:

type function name (list-of-variables) declarations statements return end

The function has to be declared with the correct type in the calling program unit. The function is then called by simply using the function name and listing the parameters in parenthesis.

Subroutines
A Fortran function can essentially only return one value. Often we want to return two or more values (or sometimes none!). For this purpose we use the subroutine construct. The syntax is as follows:

subroutine name (list-of-arguments) declarations statements return end

Note that subroutines have no type and consequently should not (cannot) be declared in the calling program unit.

We give an example of a very simple subroutine. The purpose of the subroutine is to swap two integers.

subroutine iswap (a, b) integer a, b c Local variables integer tmp

tmp = a a = b b = tmp

return end

Note that there are two blocks of variable declarations here. First, we declare the input/output parameters, i.e. the variables that are common to both the caller and the callee. Afterwards, we declare the local variables, i.e. the variables that can only be used within this subprogram. We can use the same variable names in different subprograms and the compiler will know that they are different variables that just happen to have the same names.

Call-by-reference
Fortran 77 uses the so-called call-by-reference paradigm. This means that instead of just passing the values of the function/subroutine arguments (call-by-value), the memory address of the arguments (pointers) are passed instead. A small example should show the difference:

program callex integer m, n c m = 1 n = 2 call iswap(m, n) write(*,*) m, n stop end

The output from this program is "2 1", just as one would expect. However, if Fortran 77 had been using call-by-value then the output would have been "1 2", i.e. the variables m and n were unchanged! The reason for this is that only the values of m and n had been copied to the subroutine iswap, and even if a and b were swapped inside the subroutine the new values would not have been passed back to the main program.

In the above example, call-by-reference was exactly what we wanted. But you have to be careful about this when writing Fortran code, because it is easy to introduce undesired side effects. For example, sometimes it is tempting to use an input parameter in a subprogram as a local variable and change its value. You should never do this since the new value will then propagate back to the calling program with an unexpected value!

10. RANDOM NUMBERS AND MONTE CARLO SIMULATIONS
All computer simulations (e.g. rolling the dice, tossing a coin) make use of a function that gives a random number uniformly between [0,1), i.e. includes 0, but not 1. In Fortran this function is ran(seed), where seed is an integer variable used to generate (“seed”) the sequence of random numbers. Below is a sample program that will generate 10 random numbers in the interval [0,1).

program random integer seed, n seed=7654321 c seed should be set to a large odd integer according to the Fortran manual n = 10 do n=1,10 r=ran(seed) write(6,*) n, r c could use a * instead of 6 in the write statement enddo stop end

The seed is used to generate the random numbers. If two programs (or the same program run twice) use the same seed, then they will get the same sequence of random numbers. Try running the above program twice! If you want a different sequence of random numbers every time you run your program then you must change your seed. One way to have your program change the seed for you is to use a function that gives a number that depends on the time of day. For example using the function secnds(x) gives the number of seconds (minus x) since midnight. So, as long as you don’t re-run your program too quickly, or run it exactly the same time on two different days, this Fortran program will give a different set of random numbers every time it is run.

program random integer seed,seed1, n real x seed1=7654321 x=0.0 c seed should be set to a large odd integer according to the manual c secnds(x) gives number of seconds-x elapsed since midnight c the 2*int(secnds(x)) is always even (int=gives integer) so seed is always odd seed=seed1+2*int(secnds(x)) n = 10 do n=1,10 r=ran(seed) write(6,*) n, r c could use a * instead of 6 in the write statement enddo stop end

The random number generator function only gives numbers in the interval [0,1). Sometimes we want random numbers in a different interval, e.g. [-1,1). A simple transformation can be used to change intervals. For example, if we want a random number (x) in the interval [a,b) we can do so using:

x=(b-a)*ran(seed)-a

Thus for the interval [-1,1) we get: x=2*ran(seed)-1.

In fact, we can take our set of numbers from the ran(seed) function which have a uniform probability distribution in the interval [0,1) and turn them into a set of numbers that look like they come from just about any probability distribution with any interval that one can imagine!

A few examples:

dice=int(1+6*ran(seed)) This generates the roll of a 6 sided die.

g=sqrt(-2*log(ran(seed)))*cos(2*pi*ran(seed))

This generates a random number from a gaussian distribution with mean=0 and variance=1. We assume that pi is already initialized to 3.14159 in the program.

t= -a*log(ran(seed)) This generates a random number from an exponential distribution with lifetime =a.

Being able to transform the random numbers obtained from ran(seed) into any probability distribution function we want is extremely useful and forms the basis of all computer simulations.

This type of simulation often goes by the name “Monte Carlo”. Why Monte Carlo? In the pre-computer era a popular way to obtain a set of random numbers was to use a roulette wheel, just the type found in the Mediterranean city of Monte Carlo, famous for its gambling casino. This all happened in the late 1940’s. If this technique had become popular in the late 1950’s we’d probably be calling it Las Vegas!

11. SIMPLE I/O
An important part of any computer program is to handle input and output. In our examples so far, we have already used the two most common Fortran constructs for this: read and write. Fortran I/O can be quite complicated, so we will only describe some simpler cases in this tutorial.

Read and write
Read is used for input, while write is used for output. A simple form is

read (unit no, format no) list-of-variables write(unit no, format no) list-of-variables

The unit number can refer to either standard input, standard output, or a file. This will be described in later section. The format number refers to a label for a format statement, which will be described shortly.

It is possible to simplify these statements further by using asterisks (*) for some arguments, like we have done in all our examples so far. This is sometimes called list directed read/write.

read (*,*) list-of-variables write(*,*) list-of-variables

The first statement will read values from the standard input and assign the values to the variables in the variable list, while the second one writes to the standard output.

Examples
Here is a code segment from a Fortran program:

integer m, n real x, y read(*,*) m, n read(*,*) x, y

We give the input through standard input (possibly through a data file directed to standard input). A data file consists of records according to traditional Fortran terminology. In our example, each record contains a number (either integer or real). Records are separated by either blanks or commas. Hence a legal input to the program above would be:

-1 100 -1.0 1e+2

Or, we could add commas as separators: -1, 100 -1.0, 1e+2

Note that Fortran 77 input is line sensitive, so it is important to have the right number of input elements (records) on each line. For example, if we gave the input all on one line as -1, 100, -1.0, 1e+2 then m and n would be assigned the values -1 and 100 respectively, but the last two values would be discarded, leaving x and y undefined.

12. FORMAT STATEMENTS
So far we have only showed free format input/output. This uses a set of default rules for how to output values of different types (integers, reals, characters, etc.). Often the programmer wants to specify some particular input or output format, e.g. how many decimals in real numbers. For this purpose Fortran 77 has the format statement. The same format statements are used for both input and output.

Syntax write(*, label) list-of-variables label format format-code

A simple example demonstrates how this works. Say you have an integer variable you want to print in a field 4 characters wide and a real number you want to print in fixed point notation with 3 decimal places.

write(*, 900) i, x 900 format (I4,F8.3)

The format label 900 is chosen somewhat arbitrarily, but it is common practice to number format statements with higher numbers than the control flow labels. After the keyword format follows the format codes enclosed in parenthesis. The code I4 stands for an integer with width four, while F8.3 means that the number should be printed using fixed point notation with field width 8 and 3 decimal places.

The format statement may be located anywhere within the program unit. There are two programming styles: Either the format statement follows directly after the read/write statement, or all the format statements are grouped together at the end of the (sub-) program.

Common format codes
The most common format code letters are:

A - text string D - double precision numbers, exponent notation E - real numbers, exponent notation F - real numbers, fixed point format I - integer X - horizontal skip (space) / - vertical skip (newline)

The format code F (and similarly D, E) has the general form Fw.d where w is an integer constant denoting the field width and d is an integer constant denoting the number of significant digits.

For integers only the field width is specified, so the syntax is Iw. Similarly, character strings can be specified as Aw but the field width is often dropped.

If a number or string does not fill up the entire field width, spaces will be added. Usually the text will be adjusted to the right, but the exact rules vary among the different format codes.
For horizontal spacing, the nX code is often used. This means n horizontal spaces. If n is omitted, n=1 is assumed. For vertical spacing (newlines), use the code /. Each slash corresponds to one newline. Note that each read or write statement by default ends with a newline (here Fortran differs from C).

Some examples
This piece of Fortran code

x = 0.025 write(*,100) 'x=', x 100 format (A,F) write(*,110) 'x=', x 110 format (A,F5.3) write(*,120) 'x=', x 120 format (A,E) write(*,130) 'x=', x 130 format (A,E8.1)

produces the following output when we run it:

x= 0.0250000 x=0.025 x= 0.2500000E-01 x= 0.3E-01

Note how blanks are automatically padded on the left and that the default field width for real numbers is usually 14. We see that Fortran 77 follows the rounding rule that digits 0-4 are rounded downwards while 5-9 is rounded upwards.

In this example each write statement used a different format statement. But it is perfectly fine to use the same format statement from many different write statements. In fact, this is one of the main advantages of using format statements. This feature is handy when you print tables for instance, and want each row to have the same format.

Format strings in read/write statements
Instead of specifying the format code in a separate format statement, one can give the format code in the read/write statement directly. For example, the statement write (*,'(A, F8.3)') 'The answer is x = ', x is equivalent to

write (*,990) 'The answer is x = ', x 990 format (A, F8.3)

Sometimes text strings are given in the format statements, e.g. the following version is also equivalent: write (*,999) x 999 format ('The answer is x = ', F8.3)

Implicit loops and repeat counts
Now let us do a more complicated example. Say you have a two-dimensional array of integers and want to print the upper left 5 by 10 submatrix with 10 values each on 5 rows. Here is how:

do 10 i = 1, 5 write(*,1000) (a(i,j), j=1,10) 10 continue 1000 format (I6)

We have an explicit do loop over the rows and an implicit loop over the column index j.
Often a format statement involves repetition, for example 950 format (2X, I3, 2X, I3, 2X, I3, 2X, I3)

There is a shorthand notation for this:

950 format (4(2X, I3))

It is also possible to allow repetition without explicitly stating how many times the format should be repeated. Suppose you have a vector where you want to print the first 50 elements, with ten elements on each line. Here is one way:

write(*,1010) (x(i), i=1,50) 1010 format (10I6)

The format statements says ten numbers should be printed. But in the write statement we try to print 50 numbers. So after the ten first numbers have been printed, the same format statement is automatically used for the next ten numbers and so on.

13. FILE I/O
So far we have assumed that the input/output has been to the standard input or the standard output. It is also possible to read or write from files which are stored on some external storage device, typically a disk (hard disk, floppy) or a tape. In Fortran each file is associated with a unit number, an integer between 1 and 99. Some unit numbers are reserved: 5 is standard input, 6 is standard output.

Opening and closing a file
Before you can use a file you have to open it. The command is

open (list-of-specifiers) where the most common specifiers are:

[UNIT=] u IOSTAT= ios ERR= err FILE= fname STATUS= sta ACCESS= acc FORM= frm RECL= rl

The unit number u is a number in the range 9-99 that denotes this file (the programmer may chose any number but he/she has to make sure it is unique).

ios is the I/O status identifier and should be an integer variable. Upon return, ios is zero if the stement was successful and returns a non-zero value otherwise.

err is a label which the program will jump to if there is an error.

fname is a character string denoting the file name.

sta is a character string that has to be either NEW, OLD or SCRATCH. It shows the prior status of the file. A scrath file is a file that is created and deleted when the file is closed (or the program ends).

acc must be either SEQUENTIAL or DIRECT. The default is SEQUENTIAL.

frm must be either FORMATTED or UNFORMATTED. The default is UNFORMATTED.

rl specifies the length of each record in a direct-acccess file.

For more details on these specifiers, see a good Fortran 77 book.

After a file has been opened, you can access it by read and write statements. When you are done with the file, it should be closed by the statement

close ([UNIT=]u[,IOSTAT=ios,ERR=err,STATUS=sta]) where, as usual, the parameters in brackets are optional.

Read and write revisited
The only necessary change from our previous simplified read/write statements, is that the unit number must be specified. But frequently one wants to add more specifiers. Here is how:

read ([UNIT=]u, [FMT=]fmt, IOSTAT=ios, ERR=err, END=s) write([UNIT=]u, [FMT=]fmt, IOSTAT=ios, ERR=err, END=s)

where most of the specifiers have been described above. The END=s specifier defines which statement label the program jumps to if it reaches end-of-file.

Example
You are given a data file with xyz coordinates for a bunch of points. The number of points is given on the first line. The file name of the data file is points.dat. The format for each coordinate is known to be F10.4. Here is a short program that reads the data into 3 arrays x,y,z:

program inpdat c c This program reads n points from a data file and stores them in c 3 arrays x, y, z. c integer nmax, u parameter (nmax=1000, u=20) real x(nmax), y(nmax), z(nmax)

c Open the data file open (u, FILE='points.dat', STATUS='OLD')

c Read the number of points read(u,*) n if (n.GT.nmax) then write(*,*) 'Error: n = ', n, 'is larger than nmax =', nmax goto 9999 endif

c Loop over the data points do 10 i= 1, n read(u,100) x(i), y(i), z(i) 10 enddo 100 format (3(F10.4))

c Close the file close (u)

c Now we should process the data somehow... c (missing part)

9999 stop end

14. COMMON BLOCKS
Fortran 77 has no global variables, i.e. variables that are shared among several program units (subroutines). The only way to pass information between subroutines we have seen so far, is to use the subroutine parameter list. Sometimes this is inconvenient, e.g. when many subroutines share a large set of parameters. In such cases one can use a common block. This is a way to specify that certain variables should be shared among certain subroutines. But in general, the use of common blocks should be minimized.

Example
Suppose you have two parameters alpha and beta that many of your subroutines need. The following example shows how it can be done using common blocks.

program main some declarations real alpha, beta common /coeff/ alpha, beta

statements stop end

subroutine sub1 (some arguments) declarations of arguments real alpha, beta common /coeff/ alpha, beta

statements return end

subroutine sub2 (some arguments) declarations of arguments real alpha, beta common /coeff/ alpha, beta

statements return end

Here we define a common block with the name coeff. The content of the common block is the two variables alpha and beta. A common block can contain as many variables as you like. They do not need to all have the same type. Every subroutine that wants to use any of the variables in the common block has to declare the whole block.

Note that in this example we could easily have avoided common blocks by passing alpha and beta as parameters (arguments). A good rule is to try to avoid common blocks if possible. However, there are a few rare cases where there is no other solution.

Syntax

common / name / list-of-variables

You should know that: • The common statement should appear together with the variable declarations, before the executable statements. • Different common blocks must have different names (just like variables). A variable can belong to more than one common block. • The variables in a common block do not need to have the same names each place they occur (although it is a good idea to do so), but they must be listed in the same order and have the same type.

To illustrate this, look at the following continuation of our example:

subroutine sub3 (some arguments) declarations of arguments real a, b common /coeff/ a, b

statements return end

This declaration is equivalent to the previous version that used alpha and beta. It is recommended that you always use the same variable names for the same common block to avoid confusion. Here is a dreadful example:

subroutine sub4 (some arguments) declarations of arguments real alpha, beta common /coeff/ beta, alpha

statements return end

Now alpha is the beta from the main program and vice versa. If you see something like this, it is probably a mistake. Such bugs are very hard to find.

Arrays in common blocks
Common blocks can include arrays, too. But again, this is not recommended. The major reason is flexibility. An example shows why this is such a bad idea. Suppose we have the following declarations in the main program:

program main integer nmax parameter (nmax=20) integer n real A(nmax, nmax) common /matrix/ A, n, nmax

This common block contains first all the elements of A, then the integers n and nmax. Now assume you want to use the matrix A in some subroutines. Then you have to include the same declarations in all these subroutines, e.g.

subroutine sub1 (...) integer nmax parameter (nmax=20) integer n real A(nmax, nmax) common /matrix/ A, n, nmax

Arrays with variable dimensions cannot appear in common blocks, thus the value of nmax has to be exactly the same as in the main program. Recall that the size of a matrix has to be known at compile time, hence nmax has to be defined in a parameter statement. It would be tempting to delete the parameter statement in the subroutine since nmax belongs to the common block, but this would be illegal.

This example shows there is usually nothing to gain by putting arrays in common blocks. Hence the preferred method in Fortran 77 is to pass arrays as arguments to subroutines (along with the leading dimensions).

15. DATA AND BLOCK DATA

The data statement
The data statement is another way to input data that are known at the time when the program is written. It is similar to the assignment statement. The syntax is:

data list-of-variables/ list-of-values/, ...

where the three dots means that this pattern can be repeated. Here is an example:

data m/10/, n/20/, x/2.5/, y/2.5/

We could also have written this

data m,n/10,20/, x,y/2*2.5/

We could have accomplished the same thing by the assignments

m = 10 n = 20 x = 2.5 y = 2.5

The data statement is more compact and therefore often more convenient. Notice especially the shorthand notation for assigning identical values repeatedly.

The data statement is performed only once, right before the execution of the program starts. For this reason, the data statement is mainly used in the main program and not in subroutines.

The data statement can also be used to initialize arrays (vectors, matrices). This example shows how to make sure a matrix is all zeros when the program starts:

real A(10,20) data A/ 200 * 0.0/

Some compilers will automatically initialize arrays like this but not all, so if you rely on array elements to be zero it is a good idea to follow this example. Of course you can initialize arrays to other values than zero. You may even initialize individual elements:

data A(1,1)/ 12.5/, A(2,1)/ -33.3/, A(2,2)/ 1.0/

Or you can list all the elements for small arrays like this: integer v(5) real B(2,2) data v/10,20,30,40,50/, B/1.0,-3.7,4.3,0.0/

The values for two-dimensional arrays will be assigned in column-first order as usual.

The block data statement
The data statement cannot be used for variables contained in a common block. There is a special "subroutine" for this purpose, called block data. It is not really a subroutine, but it looks a bit similar because it is given as a separate program unit. Here is an example:

block data integer nmax parameter (nmax=20) real v(nmax), alpha, beta common /vector/v,alpha,beta data v/20*100.0/, alpha/3.14/, beta/2.71/ end

Just as the data statement, block data is executed once before the execution of the main program starts. The position of the block data "subroutine" in the source code is irrelevant (as long as it is not nested inside the main program or a subprogram).

16. DEBUGGING HINTS
It has been estimated that about 90% of the time it takes to develop commercial software is spent debugging and testing. This shows how important it is to write good code in the first place.

Still, we all discover bugs from time to time. Here are some hints for how to track them down.

Useful compiler options
Most Fortran compilers will have a set of options you can turn on if you like. The following compiler options are specific to the Sun Fortran 77 compiler, but most compilers will have similar options (although the letters may be different).

-ansi This will warn you about all non-standard Fortran 77 extensions in your program.

-u This will override the implicit type rules and make all variables undeclared initially. If your compiler does not have such an option, you can achieve almost the same thing by adding the declaration implicit none (a-z) in the beginning of each (sub-)program.
-C Check for array bounds. The compiler will try to detect if you access array elements that are out of bounds. It cannot catch all such errors, however.

Some common errors
Here are some common errors to watch out for:
Make sure your lines end at column 72. The rest will be ignored!
Have you done integer division when you wanted real division?
Do your parameter lists in the calling and the called program match?
Do your common blocks match?

Debugging tools
If you have a bug, you have to try to locate it. Syntax errors are easy to find. The problem is when you have run-time errors. The old-fashioned way to find errors is to add write statements in your code and try to track the values of your variables. This is a bit tedious since you have to recompile your source code every time you change the program slightly. Today one can use special debuggers which is a convenient tool. You can step through a program line by line or define your own break points, you can display the values of the variables you want to monitor, and much more.

17. RUNNING FORTRAN ON THE PHYSICS DEPARTMENT’S VAX (OHSTPY) COMPUTER
=> do not type the “ “’s, just words inside the “ “’s!
1) Log into OHSTPY.
2) Create your program by typing "edit name.for" and type in the program. Here, name is whatever you wish to call your program. For example, test.for or lab1.for. The extension .for tells the computer that this file contains Fortran code. The edit command runs a program that allows you to create and edit a file (name.for) on the computer’s disk. When done entering your Fortran commands, hit z and type "exit" to save the recent edits and quit or "quit" to quit without saving the edits.

3) Compile the program by typing "fortran name", where name could be test if your file was named test.for. The compiler is a computer program that reads your Fortran code and translates it into code that the computer actually runs. The compiler creates a new file called name.obj (e.g. test.obj). If there are any syntax errors in your Fortran code the compiler will flag them and print out an error message(s) to the computer screen. You must fix all of the errors in the program before you can run the program.

4) Link your Fortran code (e.g. test.for) with other programs necessary to run your program by typing "link test" . This creates a new file (an “executable”) called name.exe (e.g. test.exe). Once the executable file is created, execute (run) the program by typing "run name" (e.g. “run test”).

5) Check your output carefully! Just because the program runs does not mean it actually works!

18. A SAMPLE FORTRAN PROGRAM FOR LAB 1
C This program simulates rolling a six sided dice, each side has 1 to 6 dots.
C The number of times the die is tossed is given by the integer
C variable: roll.
C
C The result of an individual toss (a 1 or
C 2,..or 6 dots) is given by the integer variable: dice.
C
C The real variable count is an ARRAY with six entries.
C Count keeps track of the number of times a 1 (2,etc) was rolled.
C For example if array(1)=5 and array(2)=7 then a one was
C rolled 5 times and a two was filled 7 times.
C
C FORTRAN is based on lines and columns, usually one instruction per line.
C In FORTRAN computer instructions start in column 7.
C In FORTRAN a C in column 1 flags this line as a comment.
C234567
C In FORTRAN a character in column 6 flags this as a continuation line.
C to assume that it is a comment line and ignore it.
C lines in RED are the actual Fortran code. implicit none character key real count(6), RAN integer i, dice, roll, seed
C
C Special precaution in integer division: dividing one integer
C by another integer gives another integer, e.g. i = 3, j = 2,
C then c = i/j = 1.0. To get the correct answer, define i and
C j as real numbers.
C
C RAN is a computer function that gives us a random number in
C the range [0,1). Initialize the random number generator RAN
C with a large odd integer seed.
C
seed = 432211111 10 continue
C "10" is the statement number of the continue command.
C Statement numbers should start at column 2 or later and end at column 5.
C All statement numbers must be a unique integer.
C
C Initialization of variables
C Here we have a do loop, which repeats itself 6 times do dice = 1, 6 count(dice) = 0 end do
C Write to unit 6 (screen) and read from unit 5 (keyboard). write(6,*)'How many rolls of dice :' read(5,*)roll do i = 1, roll dice = INT(1 + 6*RAN(seed)) count(dice) = count(dice) + 1 end do do i = 1, 6 write(6,*)i, count(i) end do
C The ">" character at 6th character location indicates
C continuation of a program line.
C
write(6,*) ‘Hit to continue or type q or Q', > ' and to quit the program.' read(5,20)key
C Define key as a one character variable ("a1"). If you use
C * instead of 20, you do not explicitly specify the format.
20 format(a1) if (key.ne.'q'.and.key.ne.'Q') go to 10 end

Similar Documents

Premium Essay

Part Two

...Part 1: Programming Solution Proposal Carl Same PRG/211 14 June 2014 Victer Echeverri Part 1: Programming Solution Proposal * Describe how you determined the problem that must be solved. The Tukwila Army recruiting center in Seattle, Washington process hundreds of applicants monthly to keep up with the demand for new recruits to the United States Army and the Army reserve. The demand for new recruits require a tremendous amount of management by the Army recruiters which is one of the reason of this proposal. This proposal will encompass all the needs of an Army recruiting center from tracking new applicants, manage prospect, and track future soldiers that are waiting to attend basic combat training. This program will also help higher echelon keep track of recruits by being able to see what each recruiter is doing in real time. The benefits of this program will increase efficiency and more reliable than using manual tracking method to keep up with future Soldiers. One great feature of this program will be sharing, it’s the concept where other recruiter will be able to see what other recruiters are working on and be able to pick up where other recruiter left off without the need of the authorization of the originator, and the originator will still receive credit for that recruit. * Describe the role of the personnel involved in the project. The complexity of this program require a group that is strong mentally, some people have a hard time working with others...

Words: 717 - Pages: 3

Free Essay

Fortran the Lenght of a Parabola Segment

...Programming Example: The Length of a Parabola Segment http://www.cs.mtu.edu/~shene/COURSES/cs201/NOTES/chap02/p-lengt... Problem Statement Given base b and height h, the length of a special segment on a parabola can be computed as follows: Write a program to read in the values of base and height, and use the above formula to compute the length of the parabola segment. Note that both base and height values must be positive. Solution ! ----------------------------------------------------------! Calculate the length of a parabola given height and base. ! ----------------------------------------------------------PROGRAM ParabolaLength IMPLICIT NONE REAL REAL :: Height, Base, Length :: temp, t 'Height of a parabola : ' Height 'Base of a parabola Base : ' * WRITE(*,*) READ(*,*) WRITE(*,*) READ(*,*) ! ... temp and t are two temporary variables t = 2.0 * Height temp = SQRT(t**2 + Base**2) Length = temp + Base**2/t*LOG((t + temp)/Base) WRITE(*,*) WRITE(*,*) WRITE(*,*) WRITE(*,*) END PROGRAM 'Height = ', Height 'Base = ', Base 'Length = ', Length ParabolaLength Click here to download this program. Program Output Height of a parabola : 100.0 Base of a parabola 78.5 Height = 100. Base = 78.5 Length = 266.149445 : The input values for Height and Base are 100.0 and 78.5, respectively. The computed length is 266.149445. Discussion 1 of 2 4/5/2014 9:30 PM Programming Example: The Length of a Parabola Segment http://www.cs.mtu.edu/~shene/COURSES/cs201/NOTES/chap02/p-lengt... ...

Words: 376 - Pages: 2

Premium Essay

Discrete Math

...instructions. In the old days, computers were taking up entire rooms and cost millions of dollars. Today, computers have shrunk that they are essentially nothing more than a piece of granular bar which are called the central processing unit (CPU), or processor. However in order to tell the processor what to do, you have to give it instructions written in a language that it can understand. That is where programming languages comes in. There many different computer languages and each one of them are similar in some ways, but are also different in other ways, such as: program syntax, the format of the language, and the limitations of the language. Most computer programmers start programming in languages such as: Turbo Pascal, Basic, Assembly, and FORTRAN are some of the oldest computer languages and C, C++, Visual basic are some of today’s popular and advance languages. Many of...

Words: 1364 - Pages: 6

Free Essay

.Netframework

...Utilizing the Internet and various sources, research the .NET Framework to answer the following questions: • When was the .NET framework created? • What is the common language runtime (CLR)? • What is the difference between .NET and ASP.NET, if any? • What languages currently comprise the .NET language? o Compare and contrast each language against the other. The .NET Framework in the late 1990s originally under the name of Next Generation Windows Services (NGWS). By late 2000 the first beta versions of .NET 1.0 were released. The Common Language Runtime (CLR) is the virtual machine component of Microsoft's .NET framework and is responsible for managing the execution of .NET programs. .NET is an object-oriented language. You use namespaces to get specific classes you need to use to do your work, and you use subroutines and functions to determine how the server processes user input. ASP.NET is an object-oriented, event-driven programming model for Web pages. Like all .NET programs, you can write ASP.NET pages in any of the four supported languages. 1.APL - is an interactive array-oriented language and integrated development environment, which is available from a number of commercial and noncommercial vendors and for most computer platforms. It is based on a mathematical notation developed by Kenneth E. Iverson and associates that features special attributes for the design and specifications of digital computing systems, both computer hardware and software. ...

Words: 1902 - Pages: 8

Free Essay

Cuda Overview

...architecture and tools, developers are achieving dramatic speedups in fields such as medical imaging and natural resource exploration, and creating breakthrough applications in areas such as image recognition and real-time HD video playback and encoding. CUDA enables this unprecedented performance via standard APIs such as the soon to be released OpenCL™ and DirectX® Compute, and high level programming languages such as C/C++, Fortran, Java, Python, and the Microsoft .NET Framework. The CUDA Architecture The CUDA Architecture consists of several components, in the green boxes below: 1. 2. 3. 4. Parallel compute engines inside NVIDIA GPUs OS kernel-level support for hardware initialization, configuration, etc. User-mode driver, which provides a device-level API for developers PTX instruction set architecture (ISA) for parallel computing kernels and functions Device-level APIs Language Integration Applications Using DirectX Applications Using OpenCL Applications Using the CUDA Driver API C for CUDA Compute Kernels Applications Using C, C++, Fortran, Java, Python, ... C for CUDA Compute Functions HLSL Compute Shaders OpenCL C Compute Kernels DirectX Compute OpenCL Driver C...

Words: 1261 - Pages: 6

Premium Essay

Unit 1 Reasearch

...1970 programing languages Fortran, AWK One of the oldest programming languages, the FORTRAN was developed by a team of programmers at IBM led by John Backus, and was first published in 1957. The name FORTRAN is an acronym for FORmula TRANslation, because it was designed to allow easy translation of math formulas into code. Despite this standardization, a few years later, various new dialects began to surface again, requiring the Standards Association review the language again. This version is known as FORTRAN '77. This version was released in 1978. As with a number of languages, it was born from the necessity to meet a need. As a researcher at Bell Labs in the early 1970s, I found myself keeping track of budgets, and keeping track of editorial correspondence. I was also teaching at a nearby university at the time, so I had to keep track of student grades as well. I wanted to have a simple little language in which I could write one- or two-line programs to do these tasks. Brian Kernighan, a researcher next door to me at the Labs, also wanted to create a similar language. We had daily conversations which culminated in a desire to create a pattern-matching language suitable for simple data-processing tasks. 1990s programing languages Visual Basic, Ruby Visual Basic is a third-generation developed by Microsoft is a event-driven programming language and integrated development environment (IDE) from Microsoft for its COM programming model first released in 1991. Microsoft intended...

Words: 683 - Pages: 3

Premium Essay

Pt1420 Unit 1

...“Unit 1 Assignment 1” ITT Technical Institute Intro to Programming – PT1420 Unit 1 Assignment 1 Short Answer Questions 1. Why is the CPU the most important component in a computer? The reason the CPU is the most important component in a computer is because without the CPU you can’t run any software. 2. What number does a bit that is turned on represent? What number does a bit that is turned off represent? The number in a bit that represents a turned on position is 1. The number in a bit that represents a turned off position is 0. 3. What would call a device that works with binary data? A digital device is a device that works with binary data. 4. What are the words that make up a high-level programming language called? Keywords or Reserved Words are words that make up a high-level programming language. 5. What are short words that are used in assembly language called? Mnemonics are short words that are used in assembly language. 6. What is the difference between a compiler and an interpreter? The difference between a compiler and an interpreter is that a compiler translates high-level language into separate machine language program while an interpreter translates AND executes the instructions in a high-level language program. 7. What type of software controls the internal operations of the computer’s hardware? An operating system controls the internal operations of the computer’s hardware. Unit 1 Research Assignment 1 * What were...

Words: 1534 - Pages: 7

Free Essay

Assaas

...yang mulai saling kompatibel satu sama lain. Perkembangan Metode pemrograman yang digunakan : Kompiler yang lebih maju dengan metode syntax-directed Sistem Operasi komputer yang mengarah pada multiprogramming Perkembangan Bahasa pemrograman yang digunakan : JOVIAL, APL, COBOL, ALGOL, SNOBOL Tahun 1966-1970 Perkembangan Hardware yang digunakan : Pesatnya kecepatan dan makin compact ukuran yang digunakan Harga komputer menjadi semakin murah Muculnya mini komputer Mulai digunakan IC (Integrated Circuit) Perkembangan Metode pemrograman yang digunakan : Mulai menggunakan time sharing Optimalisasi pada kemampuan compiler Cara penulisan yang digunakan adalah sistem translator Perkembangan Bahasa pemrograman yang digunakan : APL, FORTRAN, COBOL, SIMULA, ALGOL, SNOBOL Tahun 1971-1975 Perkembangan Hardware yang digunakan : Komputer...

Words: 479 - Pages: 2

Free Essay

Paper

...procedural, object-oriented, functional, and declarateive This paper is going to briefly discuss programming paradigms: procedural, object-oriented, functional, and declarative. Programming paradigms are ways in which a computer communicates. A programming paradigm is divided into four different languages. The first language is the procedural language. Procedural language is defined as a paradigm in which a program acts on passive objects using procedures. When procedural language is used, the program consists of nothing but a lot of procedure calls. Under the procedural language there are specific languages in which computers fall under. FORTRAN (FORmula TRANslation), COBOL (Common Buisness-Oriented Language), Pascal, C,and Ada. FORTRON was designed by IBM engineers in 1957 and it was the first known high-level language. FORTRAN had high-precision arithmetic, capability of handling complex numbers, and also exponentiation computation (Knox, 2013). COBOL was designed by computer scientists (Forouzan, and Mosharaf, 2008).   COBOL had hast access to files and databases, updated of files and databases, large amounts of generated reports, and user-friendly formatted output. Pascal was invented in 1971 and was designed to teach programming to novices by emphasizing the structured programming approach (Forouzan, and Mosharaf, 2008). The C language was developed in the early 1970s and it had high-level instructions that hides hardware details from the programmer. Ada was created...

Words: 551 - Pages: 3

Free Essay

Unit 1 Assignment 1

...System 3. Translation, Linking, Loading, Execution 4. Source 8. Software, Hardware 9. Variables 10. Secondary storage Pg. 44 Review Questions 3. Two secondary storage devices is a disk drive and flash drive Two input devices is the keyboard and mouse Two output devices is the monitor and printer 5. Syntax error is grammar error of a programming language. 6. The loader copies the executed file into memory and initiates execution of instructions. 7. Memory cells are a grouping of small units called bytes Bytes are the amount of storage required to store a single character, composed of even smaller unit called bits. Bits are binary digits 0-10. 8. Three high languages are Fortran, C, and Java FORTRAN used in scientific programming. C is used in system programming. Java supports web programming and programming Android applications. 9. Ram is volatile and it temporarily stores programs while their being executed, delete when computer is turned off, Rom is not volatile the data stored there will not disappear when the computer is turned off. 2. Write an algorithm in pseudo-code to solve the following problem: Input a temperature in Fahrenheit, and output the temperature in Celsius and Kelvin. Formulas needed are: C = ( 59 ) (F – 32). K= ( 59 ) (F – 32) + 273.15 Algorithm: Fahrenheit to Celsius and Kelvin conversion. 1. Start 2. Output “Enter Temperature in Degrees Fahrenheit” 3. Put...

Words: 458 - Pages: 2

Premium Essay

Computer History

...second generation computer in TechnologyExpand architecture  A computer built from transistors, designed between the mid-1950s andmid-1960s.  Ferrite core memory and magnetic drums replaced cathode ray tubes anddelay-line storage for main memory. Index registers and floating pointarithmetic hardware became widespread. Machine-independent high levelprogramming languages such as ALGOL, COBOL and Fortran wereintroduced to simplify programming.  I/O processors were introduced to supervise input-output operationsindependently of the CPU thus freeing the CPU from time-consuminghousekeeping functions. The CPU would send the I/O processor an initialinstruction to start operating and the I/O processor would then continueindependently of the CPU. When completed, or in the event of an error, theI/O processor sent an interrupt to the CPU.  Batch processing became feasible with the improvement in I/O and storagetechnology in that a batch of jobs could be prepared in advance, stored onmagnetic tape and processed on the computer in one continuous operationplacing the results on another magnetic tape. It became commonplace forauxiliary, small computers to be used to process the input and output tapesoff-line thus leaving the main computer free to process user programs.Computer manufacturers began to provide system software such ascompilers, subroutine libraries and batch monitors.  With the advent of second generation computers it became necessary totalk about computer systems, since the number of memory units...

Words: 556 - Pages: 3

Free Essay

Introducing Operating Systems Chapter 1

...Chapter 1: Introducing Operating Systems TRUE/FALSE 1. The operating system manages each and every piece of hardware and software. True 2. An operating system is a special type of hardware. False 3. The Memory Manager, the Interface Manager, the User Manager, and the File Manager are the basis of all operating systems. True 4. Networking was not always an integral part of operating systems. True 5. The Memory Manager is in charge of main memory, also known as ROM. False 6. The high-level portion of the Process Manager is called the Process Scheduler. False 7. The Device Manager monitors every device, channel, and control unit. True 8. The File Manager is responsible for data files but not program files. False 9. When the Processor Manager receives a command, it determines whether the program must be retrieved from storage or is already in memory, and then notifies the appropriate manager. True 10. Operating systems with networking capability have a fifth essential manager called the Network Manager that provides a convenient way for users to share resources while controlling users’ access to them. True 11. The central processing unit (CPU) is the brains of the computer with the circuitry to control the interpretation and execution of instructions. True 12. Until the mid-1970s, all computers were classified by price alone. False 13. The supercomputer was developed primarily for government applications needing massive...

Words: 541 - Pages: 3

Free Essay

Numerical Methods Chapter 2

...CHAPTER 2 2.1 Two possible versions can be developed: |IF x ( 10 THEN |IF x ( 10 THEN | |DO |DO | |x = x – 5 |x = x – 5 | |IF x < 50 EXIT |IF x < 50 EXIT | |END DO |END DO | |ELSE |ELSEIF x < 5 | |IF x < 5 THEN |x = 5 | |x = 5 |ELSE | |ELSE |x = 7.5 | |x = 7.5 |ENDIF | |END IF | | |ENDIF ...

Words: 2927 - Pages: 12

Free Essay

Gnfgj

...Perhaps the earliest device for working out sums was the abacus. This began as a clay tablet into which grooves were cut. Pebbles were then placed or taken away from grooves to perform addition and subtraction. (Our word calculation comes from the Latin word calculus meaning 'pebble'). Because the pebbles were likely to become mislaid, they were later replaced by beads threaded on to wires and mounted in a frame. By moving the beads backwards and forwards, addition, subtraction, division and multiplication could be done. In 1614 John Napier, an astronomer, invented a ready-reckoned, known as Napier's bones, to help him make complex calculations accurately. From this was developed in 1621 the earliest form of the slide rule. The first real mechanical calculating machine, working with wheels, gears and dials, was made by a Frenchmen, Blaise Pascal, in 1642. This machine used a number of wheels mounted parallel to each other, with 10 teeth mounted round the circumference of each. A carry-over mechanism was incorporated so that when one wheel made a complete revolution, the wheel to its immediate left was turned through one segment-representing one ' 10'. The machine was operated by turning the wheels backwards and forwards, thus performing addition and subtraction. The design for the first real computer was drawn up by an Englishman, Charles Babbage, in 1832. This was another mechanical machine but, like today's computers, it was designed to work automatically from a series...

Words: 2114 - Pages: 9

Free Essay

Computative Reasoning

...sc932@cornell.edu cam.cornell.edu/∼sc932 Education Cornell University Ph.D. Applied Math (current), M.S. Computer Science Ithaca, NY 2008 - 2012(projected) • – Department of Energy Computational Science Graduate Fellow (Full Scholarship, 4 years) – Emphasis on machine learning/data mining and algorithm design/software development related to bioinformatics and optimization • Oregon State University B.Sc. Mathematics, B.Sc. Computational Physics, B.Sc. Physics Corvallis, OR 2004 - 2008 – Graduated Magna Cum Laude with minors in Actuarial Sciences and Mathematical Sciences – Strong emphasis on scientific computing, numerical analysis and software development Skills • Development: C/C++, Python, CUDA, JavaScript, Ruby (Rails), Java, FORTRAN, MATLAB • Numerical Analysis: Optimization, Linear Algebra, ODEs, PDEs, Monte Carlo, Computational Physics, Complex Systems, Iterative Methods, Tomology • Computer Science: Machine Learning, Data Mining, Parallel Programming, Data Structures, Artificial Intelligence, Operating Systems • Discovering and implementing new ideas. Give me an API and a problem and I will figure it out. • Diverse background in Math, Computer Science, Physics and Biology allows me to communicate to a wide scientific and general audience and begin contributing to any group immediately. • I have worked in many places in a myriad of fields. I can readily learn and adapt to a new discipline, area or environment and start pushing real results quickly. Research and Work...

Words: 673 - Pages: 3