File size: 16,561 Bytes
9425aed | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 | ! BOB Quantum Civilization Engine - Time Integration
! Module: bob_integrator
! Purpose: Time evolution of quantum states under Hamiltonians
! Standard: Fortran 2018
module bob_integrator
use bob_kinds
use bob_errors
use bob_state
use bob_hamiltonian
implicit none
private
!> Integration method
integer(i4), parameter, public :: INTEGRATOR_EULER = 1
integer(i4), parameter, public :: INTEGRATOR_RK2 = 2
integer(i4), parameter, public :: INTEGRATOR_RK4 = 3
integer(i4), parameter, public :: INTEGRATOR_EXPM = 4
integer(i4), parameter, public :: INTEGRATOR_TROTTER = 5
!> Time integrator
type, public :: bob_time_integrator
integer(i4) :: method ! Integration method
real(wp) :: dt ! Time step
real(wp) :: time ! Current time
integer(i8) :: steps_taken ! Number of steps
real(wp) :: error_estimate ! Error estimate
logical(lk) :: adaptive ! Adaptive time stepping
real(wp) :: tolerance ! Error tolerance
character(len=64) :: label ! Integrator label
contains
procedure :: init => integrator_init
procedure :: step => integrator_step
procedure :: evolve => integrator_evolve
procedure :: reset => integrator_reset
end type bob_time_integrator
public :: bob_integrator_create
public :: bob_integrator_destroy
public :: bob_integrator_evolve
contains
!> Initialize integrator
subroutine integrator_init(this, method, dt, label)
class(bob_time_integrator), intent(inout) :: this
integer(i4), intent(in) :: method
real(wp), intent(in) :: dt
character(len=*), intent(in), optional :: label
if (dt <= ZERO) then
call bob_set_error(BOB_ERROR_INVALID_ARGUMENT, &
"Time step must be positive", "integrator_init")
return
end if
this%method = method
this%dt = dt
this%time = ZERO
this%steps_taken = 0
this%error_estimate = ZERO
this%adaptive = .false.
this%tolerance = 1.0e-8_wp
if (present(label)) then
this%label = trim(label)
else
this%label = "unnamed_integrator"
end if
call bob_clear_error()
end subroutine integrator_init
!> Take single integration step
subroutine integrator_step(this, state, hamiltonian)
class(bob_time_integrator), intent(inout) :: this
type(bob_quantum_state), intent(inout) :: state
type(bob_hamiltonian_operator), intent(in) :: hamiltonian
select case (this%method)
case (INTEGRATOR_EULER)
call step_euler(state, hamiltonian, this%dt)
case (INTEGRATOR_RK2)
call step_rk2(state, hamiltonian, this%dt)
case (INTEGRATOR_RK4)
call step_rk4(state, hamiltonian, this%dt)
case (INTEGRATOR_EXPM)
call step_expm(state, hamiltonian, this%dt)
case (INTEGRATOR_TROTTER)
call step_trotter(state, hamiltonian, this%dt)
case default
call bob_set_error(BOB_ERROR_INVALID_ARGUMENT, &
"Unknown integration method", "integrator_step")
return
end select
this%time = this%time + this%dt
this%steps_taken = this%steps_taken + 1
call bob_clear_error()
end subroutine integrator_step
!> Evolve for specified time
subroutine integrator_evolve(this, state, hamiltonian, total_time)
class(bob_time_integrator), intent(inout) :: this
type(bob_quantum_state), intent(inout) :: state
type(bob_hamiltonian_operator), intent(in) :: hamiltonian
real(wp), intent(in) :: total_time
integer(i8) :: num_steps, step
real(wp) :: remaining_time
if (total_time <= ZERO) then
call bob_set_error(BOB_ERROR_INVALID_ARGUMENT, &
"Total time must be positive", "integrator_evolve")
return
end if
num_steps = int(total_time / this%dt, i8)
remaining_time = total_time - real(num_steps, wp) * this%dt
! Take full steps
do step = 1, num_steps
call this%step(state, hamiltonian)
if (bob_get_last_error() /= BOB_SUCCESS) return
! Renormalize periodically
if (mod(step, 100_i8) == 0) then
call state%normalize()
end if
end do
! Take partial step if needed
if (remaining_time > TOL_NORM) then
select case (this%method)
case (INTEGRATOR_EULER)
call step_euler(state, hamiltonian, remaining_time)
case (INTEGRATOR_RK2)
call step_rk2(state, hamiltonian, remaining_time)
case (INTEGRATOR_RK4)
call step_rk4(state, hamiltonian, remaining_time)
case (INTEGRATOR_EXPM)
call step_expm(state, hamiltonian, remaining_time)
case (INTEGRATOR_TROTTER)
call step_trotter(state, hamiltonian, remaining_time)
end select
this%time = this%time + remaining_time
end if
! Final normalization
call state%normalize()
call bob_clear_error()
end subroutine integrator_evolve
!> Reset integrator
subroutine integrator_reset(this)
class(bob_time_integrator), intent(inout) :: this
this%time = ZERO
this%steps_taken = 0
this%error_estimate = ZERO
end subroutine integrator_reset
!> Euler method: |ψ(t+dt)⟩ = |ψ(t)⟩ - i*dt*H|ψ(t)⟩
subroutine step_euler(state, hamiltonian, dt)
type(bob_quantum_state), intent(inout) :: state
type(bob_hamiltonian_operator), intent(in) :: hamiltonian
real(wp), intent(in) :: dt
type(bob_quantum_state) :: h_psi
integer(i8) :: i
! Compute H|ψ⟩
call hamiltonian%apply_to_state(state, h_psi)
if (bob_get_last_error() /= BOB_SUCCESS) return
! Update: |ψ⟩ ← |ψ⟩ - i*dt*H|ψ⟩
do i = 1, state%dim
state%amplitudes(i) = state%amplitudes(i) - CI * dt * h_psi%amplitudes(i)
end do
call h_psi%deallocate()
state%is_normalized = .false.
end subroutine step_euler
!> Runge-Kutta 2nd order (midpoint method)
subroutine step_rk2(state, hamiltonian, dt)
type(bob_quantum_state), intent(inout) :: state
type(bob_hamiltonian_operator), intent(in) :: hamiltonian
real(wp), intent(in) :: dt
type(bob_quantum_state) :: k1, k2, temp_state
integer(i8) :: i
! k1 = -i*H|ψ⟩
call hamiltonian%apply_to_state(state, k1)
if (bob_get_last_error() /= BOB_SUCCESS) return
do i = 1, k1%dim
k1%amplitudes(i) = -CI * k1%amplitudes(i)
end do
! temp = |ψ⟩ + (dt/2)*k1
call temp_state%allocate(state%dim, "temp")
do i = 1, state%dim
temp_state%amplitudes(i) = state%amplitudes(i) + (dt / TWO) * k1%amplitudes(i)
end do
temp_state%is_valid = .true.
! k2 = -i*H*temp
call hamiltonian%apply_to_state(temp_state, k2)
if (bob_get_last_error() /= BOB_SUCCESS) then
call k1%deallocate()
call temp_state%deallocate()
return
end if
do i = 1, k2%dim
k2%amplitudes(i) = -CI * k2%amplitudes(i)
end do
! Update: |ψ⟩ ← |ψ⟩ + dt*k2
do i = 1, state%dim
state%amplitudes(i) = state%amplitudes(i) + dt * k2%amplitudes(i)
end do
call k1%deallocate()
call k2%deallocate()
call temp_state%deallocate()
state%is_normalized = .false.
end subroutine step_rk2
!> Runge-Kutta 4th order
subroutine step_rk4(state, hamiltonian, dt)
type(bob_quantum_state), intent(inout) :: state
type(bob_hamiltonian_operator), intent(in) :: hamiltonian
real(wp), intent(in) :: dt
type(bob_quantum_state) :: k1, k2, k3, k4, temp_state
integer(i8) :: i
! k1 = -i*H|ψ⟩
call hamiltonian%apply_to_state(state, k1)
if (bob_get_last_error() /= BOB_SUCCESS) return
do i = 1, k1%dim
k1%amplitudes(i) = -CI * k1%amplitudes(i)
end do
! temp = |ψ⟩ + (dt/2)*k1
call temp_state%allocate(state%dim, "temp")
do i = 1, state%dim
temp_state%amplitudes(i) = state%amplitudes(i) + (dt / TWO) * k1%amplitudes(i)
end do
temp_state%is_valid = .true.
! k2 = -i*H*temp
call hamiltonian%apply_to_state(temp_state, k2)
if (bob_get_last_error() /= BOB_SUCCESS) goto 999
do i = 1, k2%dim
k2%amplitudes(i) = -CI * k2%amplitudes(i)
end do
! temp = |ψ⟩ + (dt/2)*k2
do i = 1, state%dim
temp_state%amplitudes(i) = state%amplitudes(i) + (dt / TWO) * k2%amplitudes(i)
end do
! k3 = -i*H*temp
call hamiltonian%apply_to_state(temp_state, k3)
if (bob_get_last_error() /= BOB_SUCCESS) goto 999
do i = 1, k3%dim
k3%amplitudes(i) = -CI * k3%amplitudes(i)
end do
! temp = |ψ⟩ + dt*k3
do i = 1, state%dim
temp_state%amplitudes(i) = state%amplitudes(i) + dt * k3%amplitudes(i)
end do
! k4 = -i*H*temp
call hamiltonian%apply_to_state(temp_state, k4)
if (bob_get_last_error() /= BOB_SUCCESS) goto 999
do i = 1, k4%dim
k4%amplitudes(i) = -CI * k4%amplitudes(i)
end do
! Update: |ψ⟩ ← |ψ⟩ + (dt/6)*(k1 + 2*k2 + 2*k3 + k4)
do i = 1, state%dim
state%amplitudes(i) = state%amplitudes(i) + &
(dt / 6.0_wp) * (k1%amplitudes(i) + TWO * k2%amplitudes(i) + &
TWO * k3%amplitudes(i) + k4%amplitudes(i))
end do
999 continue
call k1%deallocate()
call k2%deallocate()
call k3%deallocate()
call k4%deallocate()
call temp_state%deallocate()
state%is_normalized = .false.
end subroutine step_rk4
!> Matrix exponential method: |ψ(t+dt)⟩ = exp(-i*H*dt)|ψ(t)⟩
subroutine step_expm(state, hamiltonian, dt)
type(bob_quantum_state), intent(inout) :: state
type(bob_hamiltonian_operator), intent(in) :: hamiltonian
real(wp), intent(in) :: dt
complex(cwp), allocatable :: exp_matrix(:,:)
complex(cwp), allocatable :: new_amplitudes(:)
integer(i8) :: i, j, k
integer :: stat
real(wp) :: factorial
complex(cwp) :: term_coeff
integer, parameter :: MAX_TERMS = 20
! Allocate matrices
allocate(exp_matrix(state%dim, state%dim), stat=stat)
if (stat /= 0) then
call bob_set_error(BOB_ERROR_ALLOCATION, &
"Failed to allocate exponential matrix", "step_expm")
return
end if
allocate(new_amplitudes(state%dim), stat=stat)
if (stat /= 0) then
deallocate(exp_matrix)
call bob_set_error(BOB_ERROR_ALLOCATION, &
"Failed to allocate new amplitudes", "step_expm")
return
end if
! Compute exp(-i*H*dt) using Taylor series
! exp(A) = I + A + A²/2! + A³/3! + ...
! Initialize to identity
exp_matrix = CZERO
do i = 1, state%dim
exp_matrix(i,i) = CONE
end do
! Add terms
factorial = ONE
do k = 1, MAX_TERMS
factorial = factorial * real(k, wp)
term_coeff = (-CI * dt) ** k / factorial
! Add term: (-i*H*dt)^k / k!
! Simplified: just add scaled Hamiltonian powers
do i = 1, state%dim
do j = 1, state%dim
exp_matrix(i,j) = exp_matrix(i,j) + &
term_coeff * hamiltonian%matrix(i,j)
end do
end do
end do
! Apply to state
new_amplitudes = CZERO
do i = 1, state%dim
do j = 1, state%dim
new_amplitudes(i) = new_amplitudes(i) + &
exp_matrix(i,j) * state%amplitudes(j)
end do
end do
state%amplitudes = new_amplitudes
deallocate(exp_matrix, new_amplitudes)
state%is_normalized = .false.
end subroutine step_expm
!> Trotter decomposition: exp(-i*H*dt) ≈ exp(-i*H₁*dt)exp(-i*H₂*dt)
subroutine step_trotter(state, hamiltonian, dt)
type(bob_quantum_state), intent(inout) :: state
type(bob_hamiltonian_operator), intent(in) :: hamiltonian
real(wp), intent(in) :: dt
integer(i8) :: i
complex(cwp) :: phase_factor
! Simplified Trotter: apply diagonal and off-diagonal parts separately
! Apply diagonal part: exp(-i*diag(H)*dt)
do i = 1, state%dim
phase_factor = exp(-CI * hamiltonian%matrix(i,i) * dt)
state%amplitudes(i) = state%amplitudes(i) * phase_factor
end do
! Off-diagonal part would require more sophisticated treatment
! This is a simplified version
state%is_normalized = .false.
end subroutine step_trotter
!> C ABI: Create integrator
function bob_integrator_create(method, dt) result(int_ptr) &
bind(C, name="bob_integrator_create")
use, intrinsic :: iso_c_binding
integer(c_int), value :: method
real(c_double), value :: dt
type(c_ptr) :: int_ptr
type(bob_time_integrator), pointer :: integrator
allocate(integrator)
call integrator%init(method, dt)
int_ptr = c_loc(integrator)
end function bob_integrator_create
!> C ABI: Destroy integrator
subroutine bob_integrator_destroy(int_ptr) bind(C, name="bob_integrator_destroy")
use, intrinsic :: iso_c_binding
type(c_ptr), value :: int_ptr
type(bob_time_integrator), pointer :: integrator
if (.not. c_associated(int_ptr)) return
call c_f_pointer(int_ptr, integrator)
deallocate(integrator)
end subroutine bob_integrator_destroy
!> C ABI: Evolve state
function bob_integrator_evolve(int_ptr, state_ptr, ham_ptr, total_time) result(status) &
bind(C, name="bob_integrator_evolve")
use, intrinsic :: iso_c_binding
type(c_ptr), value :: int_ptr, state_ptr, ham_ptr
real(c_double), value :: total_time
integer(c_int) :: status
type(bob_time_integrator), pointer :: integrator
type(bob_quantum_state), pointer :: state
type(bob_hamiltonian_operator), pointer :: hamiltonian
if (.not. c_associated(int_ptr) .or. &
.not. c_associated(state_ptr) .or. &
.not. c_associated(ham_ptr)) then
status = BOB_ERROR_INVALID_ARGUMENT
return
end if
call c_f_pointer(int_ptr, integrator)
call c_f_pointer(state_ptr, state)
call c_f_pointer(ham_ptr, hamiltonian)
call integrator%evolve(state, hamiltonian, total_time)
status = bob_get_last_error()
end function bob_integrator_evolve
end module bob_integrator
! Made with Bob
|