mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-04 05:03:54 +01:00
78 lines
2.4 KiB
Fortran
78 lines
2.4 KiB
Fortran
|
subroutine sym_apply_inversion(point_in, point_out)
|
||
|
implicit none
|
||
|
double precision, intent(in) :: point_in(3)
|
||
|
double precision, intent(out) :: point_out(3)
|
||
|
point_out(:) = -point_in(:)
|
||
|
end
|
||
|
|
||
|
subroutine sym_apply_reflexion(iaxis,point_in,point_out)
|
||
|
implicit none
|
||
|
integer, intent(in) :: iaxis
|
||
|
double precision, intent(in) :: point_in(3)
|
||
|
double precision, intent(out) :: point_out(3)
|
||
|
point_out(:) = point_in(:)
|
||
|
point_out(iaxis) = -point_in(iaxis)
|
||
|
|
||
|
end
|
||
|
|
||
|
subroutine sym_apply_diagonal_reflexion(iaxis,point_in,point_out)
|
||
|
implicit none
|
||
|
integer, intent(in) :: iaxis
|
||
|
double precision, intent(in) :: point_in(3)
|
||
|
double precision, intent(out) :: point_out(3)
|
||
|
if (iaxis == 1) then
|
||
|
point_out(1) = point_in(1)
|
||
|
point_out(2) = point_in(3)
|
||
|
point_out(3) = point_in(2)
|
||
|
else if (iaxis == 2) then
|
||
|
point_out(1) = point_in(3)
|
||
|
point_out(2) = point_in(2)
|
||
|
point_out(3) = point_in(1)
|
||
|
else if (iaxis == 3) then
|
||
|
point_out(1) = point_in(2)
|
||
|
point_out(2) = point_in(1)
|
||
|
point_out(3) = point_in(3)
|
||
|
endif
|
||
|
|
||
|
end
|
||
|
|
||
|
subroutine sym_apply_rotation(angle,iaxis,point_in,point_out)
|
||
|
implicit none
|
||
|
double precision, intent(in) :: angle
|
||
|
integer, intent(in) :: iaxis
|
||
|
double precision, intent(in) :: point_in(3)
|
||
|
double precision, intent(out) :: point_out(3)
|
||
|
double precision :: theta, sin_t, cos_t
|
||
|
double precision, parameter :: pi = dacos(-1.d0)
|
||
|
theta = 2.d0*pi/angle
|
||
|
sin_t = dsin(theta)
|
||
|
cos_t = dcos(theta)
|
||
|
if (iaxis==1) then
|
||
|
point_out(1) = point_in(1)
|
||
|
point_out(2) = point_in(2)*cos_t - point_in(3)*sin_t
|
||
|
point_out(3) = point_in(2)*sin_t + point_in(3)*cos_t
|
||
|
else if (iaxis==2) then
|
||
|
point_out(1) = point_in(1)*cos_t - point_in(3)*sin_t
|
||
|
point_out(2) = point_in(2)
|
||
|
point_out(3) = point_in(1)*sin_t + point_in(3)*cos_t
|
||
|
endif
|
||
|
if (iaxis==3) then
|
||
|
point_out(1) = point_in(1)*cos_t - point_in(2)*sin_t
|
||
|
point_out(2) = point_in(1)*sin_t + point_in(2)*cos_t
|
||
|
point_out(3) = point_in(3)
|
||
|
endif
|
||
|
end
|
||
|
|
||
|
subroutine sym_apply_improper_rotation(angle,iaxis,point_in,point_out)
|
||
|
implicit none
|
||
|
double precision, intent(in) :: angle
|
||
|
integer, intent(in) :: iaxis
|
||
|
double precision, intent(in) :: point_in(3)
|
||
|
double precision, intent(out) :: point_out(3)
|
||
|
double precision :: point_tmp(3)
|
||
|
call sym_apply_rotation(angle,iaxis,point_in,point_tmp)
|
||
|
call sym_apply_reflexion(iaxis,point_tmp,point_out)
|
||
|
end
|
||
|
|
||
|
|