CSMP III

From HandWiki

CSMP III, or Continuous System Modelling Program[1] IlI is an early scientific computer software designed for modelling and solving differential equations numerically. This enables real-world systems to be simulated and tested with a computer.[2]

Purpose

Since the early 1961s computer systems have been able to simulate real-world dynamic situations, such as the interaction between people in a public building such as an airport terminal. Models can be used to test the stresses imposed on an engineering structure without risk or construction cost. Modern uses include weather systems analysis and the effect on our planet Earth due to global warming. CSMP and its various versions were used extensively in the past when this software was first developed.[3]

Structure

Like all computer programs its analytical and simulation programs are constructed from three general types of statements:[4]

  • Structural statements, which define the model. They consist of FORTRAN-like programming language statements, and functional blocks of program code (procedures) designed for repeat operations that frequently occur in a model definition.
  • Data statements, which assign numerical values to various changing parameters, constants, and initial conditions.
  • Control statements, which specify options in assembly and execution of the program, and the choice of output of the results of the calculations performed.

Structural statements can make use of the operations of addition, subtraction, multiplication, division, and exponentiation, using the same notation and syntax rules as are used in FORTRAN.[5] If, for example, the model includes the equation

[math]\displaystyle{ X=6Y/W+(Z-2)^2 }[/math]

the following statement will be used to define the variables and calculus performed:

x=6.0*Y/W+(Z-2.0)**2.0

Randomisation

Random variation to values can be added to some parts of the model to simulate unpredictable behaviour patterns in dynamic wind-loaded structures, such as high-rise buildings or aircraft wing designs.[3]

Modern variations

The earlier CSMP III text-based programming language has been superseded by variations such as APL and object oriented computer-language modelling versions of CSMP such as OOSCMP.[6]

Main page: APL (programming language)

References

  1. "CSMP simulations". Computerworld: p. 18. 16 April 1975. https://books.google.com/books?id=HwniRloeB6cC. 
  2. "Implicit integration for CSMP III and the problem of stiffness". Advanced Applications Group IBM (UK) February 1976. http://sim.sagepub.com/content/26/2/57.short. Retrieved 13 February 2011. 
  3. 3.0 3.1 "Continuous-system simulation languages: A state-of-the-art survey". Elsevier Science Publishers B. V. Amsterdam 1 January 1974. http://portal.acm.org/citation.cfm?id=1742960&preflayout=flat. Retrieved 13 February 2011. 
  4. "Basic programming". Tech Warehouse company – date undisclosed. http://www.techiwarehouse.com/cat/17/BASIC-Programming. Retrieved 20 February 2011. 
  5. "Summary of Fortran 77 statements". National Supercomputer Centre Linköping University Linköping SWEDEN 1999. http://www.nsc.liu.se/~boein/f77to90/a2.html. Retrieved 20 February 2011. 
  6. "Compiling a simulation language in APL". Spanish Interdepartmental Commission of Science and Technology (CICYT). http://arantxa.ii.uam.es/~alfonsec/docs/apl98s.htm. Retrieved 13 February 2011. 

External links