Fortraneries/Fraktalism/fraktals.f90

178 lines
4.4 KiB
Fortran
Raw Normal View History

2022-02-12 21:00:57 +01:00
module fraktals
2022-03-08 10:36:32 +01:00
use points3d
2022-02-12 21:00:57 +01:00
implicit none
2022-03-08 10:36:32 +01:00
!-----------------------------------------------------
!-----------------------------------------------------
2022-02-12 21:00:57 +01:00
contains
!-----------------------------------------------------
2022-02-12 23:27:59 +01:00
subroutine simple_julia(pic, cx, cy, maxiter)
2022-02-12 21:00:57 +01:00
implicit none
integer, intent(inout), dimension (:,:) :: pic
real, intent(in) :: cx, cy
2022-02-12 23:27:59 +01:00
integer, intent(in) :: maxiter
2022-02-12 21:00:57 +01:00
integer :: ix, iy, width, height
real :: fx, fy
complex :: Z, C
2022-02-12 23:27:59 +01:00
integer :: iter
2022-02-14 14:15:10 +01:00
logical :: over_iter
2022-02-12 21:00:57 +01:00
width = ubound(pic, 1)
height = ubound(pic, 2)
C = complex(cx, cy)
2022-02-14 14:15:10 +01:00
print *, "Const = ", C
2022-02-12 21:00:57 +01:00
do ix = 1, width
fx = (float(ix) / (float(width)/4.0) - 2.0)
do iy = 1, height
fy = (float(iy) / (float(height)/4.0) - 2.0)
! ------ traitement du pixel
2022-02-14 14:15:10 +01:00
iter = 0 ; over_iter = .FALSE.
2022-02-12 21:00:57 +01:00
Z = complex(fx, fy)
2022-02-14 14:15:10 +01:00
do while (modulus2(Z) .LT. 4.0)
2022-02-12 21:00:57 +01:00
Z = (Z * Z) + C
iter = iter + 1
2022-02-14 14:15:10 +01:00
if (iter .GE. maxiter) then
over_iter = .TRUE.
exit
endif
2022-02-12 21:00:57 +01:00
2022-02-14 14:15:10 +01:00
end do
2022-02-12 21:00:57 +01:00
2022-02-14 14:15:10 +01:00
if (over_iter) then
pic(ix, iy) = 0
else
pic(ix, iy) = iter
endif
2022-02-12 21:00:57 +01:00
enddo
enddo
2022-02-14 14:15:10 +01:00
end subroutine simple_julia
!-----------------------------------------------------
2022-02-16 00:18:35 +01:00
!
! d'après les pages 91/92 du livre de Roger T Stevens
! "Fractal programming in C"
!
2022-03-08 10:36:32 +01:00
subroutine compute_pickover(array, coefs)
type(t_point3d), dimension(:) :: array
double precision, dimension(4) :: coefs
2022-02-14 14:15:10 +01:00
double precision :: xa, ya, za, xb, yb, zb
2022-03-08 10:36:32 +01:00
integer :: i
! print *, "coefs ", coefs
2022-02-14 14:15:10 +01:00
2022-03-08 10:36:32 +01:00
write(0, '(1X, A18, I9)') "compute pickover ", ubound(array, 1)
2022-02-14 14:15:10 +01:00
2022-03-08 10:36:32 +01:00
xa = 0.00 ; ya = 0.00 ; za = 0.0
2022-02-14 14:15:10 +01:00
2022-03-08 10:36:32 +01:00
do i=1, ubound(array, 1)
2022-02-14 14:15:10 +01:00
2022-03-08 10:36:32 +01:00
xb = sin(coefs(1)*ya) - za*cos(coefs(2)*xa)
yb = za*sin(coefs(3)*xa) - cos(coefs(4)*ya)
2022-02-14 14:15:10 +01:00
zb = sin(xa)
2022-03-08 10:36:32 +01:00
array(i)%x = xb
array(i)%y = yb
array(i)%z = zb
array(i)%seq = i
2022-02-14 14:15:10 +01:00
xa = xb ; ya = yb ; za = zb
2022-03-08 10:36:32 +01:00
! print *, xb, yb, zb
2022-02-14 14:15:10 +01:00
enddo
2022-03-08 10:36:32 +01:00
end subroutine
!-----------------------------------------------------
!
! d'après les pages 91/92 du livre de Roger T Stevens
! "Fractal programming in C"
!
subroutine pickover_0(pic, count)
implicit none
integer, intent(inout), dimension (:,:) :: pic
integer, intent(in) :: count
type(t_point3d), dimension(:), allocatable :: points
double precision, dimension(4) :: coefs
integer :: i, w, h, px, py, errcode
write(0, '(1X, A18 , I9)') "pickover_0 ", count
allocate(points(count), stat=errcode)
if (0 .NE. errcode) then
STOP " : NO ENOUGH MEMORY"
endif
coefs(1) = 2.24 ; coefs(2) = 0.43
coefs(3) = -0.65 ; coefs(4) = -2.43
call compute_pickover(points, coefs)
w = ubound(pic, 1)
h = ubound(pic, 2)
do i=1, ubound(points, 1)
px = (points(i)%x * (w/4.09)) + (w / 2)
py = (points(i)%y * (h/4.09)) + (h / 2)
pic(px, py) = 255 ! WARNING COREDUMP
enddo
deallocate(points)
2022-02-14 14:15:10 +01:00
end subroutine pickover_0
2022-03-08 10:36:32 +01:00
2022-02-12 21:00:57 +01:00
!-----------------------------------------------------
2022-03-08 10:36:32 +01:00
!
! d'après les pages NN/NN du livre de Roger T Stevens
! "Fractal programming in C"
!
subroutine lorentz_0(pic, count)
implicit none
integer, intent(inout), dimension (:,:) :: pic
integer, intent(in) :: count
! XXX double precision :: xa, ya, za, xb, yb, zb
! XXX double precision :: ka, kb, kc, kd
! XXX integer :: i, w, h, px, py
end subroutine lorentz_0
!-----------------------------------------------------------
2022-02-14 14:15:10 +01:00
! -- some support functions --
2022-03-08 10:36:32 +01:00
!-----------------------------------------------------------
!-----------------------------------------------------------
2022-02-14 14:15:10 +01:00
2022-02-12 21:00:57 +01:00
function dist0 (x, y)
implicit none
real, intent(in) :: x, y
real :: dist0
dist0 = ( x*x + y*y )
end function
2022-03-08 10:36:32 +01:00
!-----------------------------------------------------------
2022-02-12 21:00:57 +01:00
function modulus2(pt)
implicit none
complex, intent(in) :: pt
real :: modulus2
modulus2 = real(pt)*real(pt) + imag(pt)*imag(pt)
end
!-----------------------------------------------------
end module fraktals