!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ! Lorenz63.f90 Implements Lorenz 1963 model ! !The MIT License (MIT) ! !Copyright (c) 2014 Philip A. Browne ! !Permission is hereby granted, free of charge, to any person obtaining a copy !of this software and associated documentation files (the "Software"), to deal !in the Software without restriction, including without limitation the rights !to use, copy, modify, merge, publish, distribute, sublicense, and/or sell !copies of the Software, and to permit persons to whom the Software is !furnished to do so, subject to the following conditions: ! !The above copyright notice and this permission notice shall be included in all !copies or substantial portions of the Software. ! !THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR !IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, !FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE !AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER !LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, !OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE !SOFTWARE. ! !Email: p.browne@reading.ac.uk !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! program lorenz63 implicit none include 'mpif.h' real(kind=kind(1.0D0)) :: t,sigma,rho,beta,dt,tstart,tstop real(kind=kind(1.0D0)), dimension(3) :: x,k1,k2,k3,k4 integer :: mpi_err call mpi_init (mpi_err) tstart =0.0D0 ; tstop =10.0D0 ; dt = 0.01D0 sigma = 10.0D0 ; rho = 28.0D0 ; beta = 8.0D0 /3.0D0 x = (/ 1.508870D0 , -1.531271D0 , 25.46091D0 /) t = tstart do; if ( t .ge. tstop ) exit k1 = f ( x , sigma , rho , beta ) k2 = f ( x +0.5D0 * dt * k1 , sigma , rho , beta ) k3 = f ( x +0.5D0 * dt * k2 , sigma , rho , beta ) k4 = f ( x + dt * k3 , sigma , rho , beta ) x = x + dt *( k1 + 2.0D0 *( k2 + k3 ) + k4 )/6.0D0 t = t + dt print * , x (1) , x (2) , x (3) end do call mpi_finalize(mpi_err) contains function f (x , sigma , rho , beta ) implicit none real(kind=kind(1.0D0)),intent(in),dimension (3) :: x real(kind=kind(1.0D0)),dimension(3) :: f real(kind=kind(1.0D0)),intent(in) :: sigma , rho , beta f = (/sigma *(x(2)-x(1)),x(1)*(rho-x(3)) -x(2),x(1)*x(2)-beta*x(3)/) end function f end program lorenz63