module fun implicitnone contains real(kind=8) function cosin(a,b) real,dimension(3) :: a,b real :: temp1,temp2 temp1=sqrt(a(1)**2+a(2)**2+a(3)**2) temp2=sqrt(b(1)**2+b(2)**2+b(3)**2) cosin=(a(1)*b(1)+a(2)*b(2)+a(3)*b(3))/(temp1*temp2) endfunction cosin
real(kind=8) function cross(a,b) real,dimension(3) :: a,b cross=a(1)*b(2)-a(2)*b(1) endfunction cross endmodule fun program nonlinear use fun implicitnone integer :: x1,x2,x3,x4,s1,s2,s3,s4 integer :: i,j,k,l,m,n integer :: up,down,temp,min_val real,dimension(3) :: a,b,a_prime,b_prime real :: error a(1)=0.0!这里从左到右输入POSCAR中不正交向量a的第1列的值 a(2)=0.0!这里从左到右输入POSCAR中不正交向量a的第2列的值 a(3)=0.0!这里从左到右输入POSCAR中不正交向量a的第3列的值 b(1)=0.0!这里从左到右输入POSCAR中不正交向量b的第1列的值 b(2)=0.0!这里从左到右输入POSCAR中不正交向量b的第2列的值 b(3)=0.0!这里从左到右输入POSCAR中不正交向量b的第3列的值
up=10!变换矩阵中每个整数的搜索上限 down=-10!变换矩阵中每个整数搜索下限 error=1e-4!最终最小化允许的误差 min_val=1000000 loop1:do i=down,up loop2: do j=down,up loop3: do k=down,up loop4: do l=down,up if (i==0 .and. j==0) then cycle loop4 endif if (k==0 .and. l==0) then cycle loop4 endif x1=i x2=j x3=k x4=l if (x2*x3-x1*x4<0) then a_prime(1)=x1*a(1)+x2*b(1) a_prime(2)=x1*a(2)+x2*b(2) a_prime(3)=x1*a(3)+x2*b(3) b_prime(1)=x3*a(1)+x4*b(1) b_prime(2)=x3*a(2)+x4*b(2) b_prime(3)=x3*a(3)+x4*b(3) !write(*,*) abs(cosin(a_prime,b_prime)) if (abs(cosin(a_prime,b_prime))<=error) then temp=abs(x1)+abs(x2)+abs(x3)+abs(x4) if (temp<min_val) then min_val=temp