Mercurial > op > rk_sakamoti
view rkmain.f90 @ 5:0ca8347e4c47
add rk_Lorenz.R and rksub.f90
author | "uncorrelated zombie" <uncorrelated@yahoo.co.jp> |
---|---|
date | Tue, 23 Jul 2024 03:31:21 +0900 |
parents | 2347cff808b0 |
children |
line wrap: on
line source
program rkmain use rkmod implicit none real(kind=dpkind),dimension(3) :: x = [0.5, 0.5, 0.5] integer :: max_i = 5000 ! real(kind=dpkind), allocatable, dimension(:, :) :: r real(kind=dpkind), dimension(5000, 4) :: r ! allocate(r(max_i, 4)) call calc(x, max_i, r) open(17,file='rkmain.dat', form='unformatted', access = "stream", status='replace') write(17) r close(17) end program