wheuno.blogg.se

Abaqus 6.13 fortran 77
Abaqus 6.13 fortran 77










abaqus 6.13 fortran 77

The ‘E’ descriptor described above differs slightly from the traditional well known ‘scientific notation’. This takes the form ‘rESw.d’ where the meanings of r, w and d are given in the table below. This is used for real output (scientific notation). One for the sign of the mantissa, two for the zero, four for the mantissa and two for the exponent itself. Please note that, to print out a real number with three decimal places a field width of at least ten is needed. If the field width is not large enough to accommodate the real number then the field is filled with asterisks. Real values are right justified in their fields. The ‘E’ descriptor statement takes the form ‘rEw.d’ where the meanings of r, w and d are given in the table below. This is used for real output in exponential notation. This takes the form ‘rFw.d’ where the meanings of r, w and d are given in the table below. If the field width is not large enough to accommodate an integer then the field is filled with asterisks. Integer values are right justified in their fields. This takes the form ‘rIw.m’ where the meanings of r, w and m are given in the table below. The following table describes the descriptors − Descriptor It consists of a string, containing a list of edit descriptors in parentheses.Īn edit descriptor specifies the exact format, for example, width, digits after decimal point etc., in which characters and numbers are displayed. Variable-list is a list of the variables to be read from keyboard or written on screenįormat specification defines the way in which formatted data is displayed. Formatted Input Outputįormatted input output has the syntax as follows − However the formatted I/O gives you more flexibility over data transfer.

abaqus 6.13 fortran 77

The free format simple I/O has the form −

abaqus 6.13 fortran 77

This form of input-output is free format I/O, and it is called list-directed input-output. We have so far seen that we can read data from keyboard using the read * statement, and display output to the screen using the print* statement, respectively.












Abaqus 6.13 fortran 77