STUDY OF DERIVED PARAMETERS AND THE FORTRAN 90 DERIVED DATA TYPE
Keywords:
Generally, derived data, integer index, intrinsic dataAbstract
In many applications the intrinsic data types are not enough to express in code the ideas behind an algorithm or solution to a specific problem. Derived data types and structures allow programmer to group different kinds of information that belong to a single entity. In a way they resemble arrays but with two important differences. First the different elements of a derived data type do not have to be of the same type, thus they may include integer, character or real. Second the different entities making up the derived data type are referred to with a name and not an integer index. The different element of a derived data type are referred to as components. The data type of the component can be any of the intrinsic data types, or a previously defined derived data type.
References
https://www.rsmas.miami.edu/users/miskandarani/Courses/MSC321/lecttypes.pdf
http://csweb.cs.wfu.edu/~torgerse/Kokua/More_SGI/007-3692-006/sgi_html/ch04.html
Fortran Language Reference Manual, Volume 1
Fortran 90: Derived Data Types
https://courses.physics.illinois.edu/phys466/sp2013/comp_info/derived.html
https://web.stanford.edu/class/me200c/tutorial_90/10_derived.html