Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
fleur
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
51
Issues
51
List
Boards
Labels
Service Desk
Milestones
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
fleur
fleur
Commits
1d0c6cca
Commit
1d0c6cca
authored
Mar 16, 2018
by
Gregor Michalicek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Put magnetic moments output into own subroutine
parent
8f168658
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
69 additions
and
28 deletions
+69
-28
cdn_mt/CMakeLists.txt
cdn_mt/CMakeLists.txt
+1
-0
cdn_mt/magMoms.f90
cdn_mt/magMoms.f90
+53
-0
cdn_mt/orbMagMoms.f90
cdn_mt/orbMagMoms.f90
+6
-0
main/cdngen.F90
main/cdngen.F90
+9
-28
No files found.
cdn_mt/CMakeLists.txt
View file @
1d0c6cca
...
@@ -9,6 +9,7 @@ cdn_mt/abcof.F90
...
@@ -9,6 +9,7 @@ cdn_mt/abcof.F90
cdn_mt/abcof3.F90
cdn_mt/abcof3.F90
cdn_mt/abcrot2.f90
cdn_mt/abcrot2.f90
cdn_mt/cdnmt.f90
cdn_mt/cdnmt.f90
cdn_mt/magMoms.f90
cdn_mt/orbMagMoms.f90
cdn_mt/orbMagMoms.f90
cdn_mt/orb_comp2.f90
cdn_mt/orb_comp2.f90
cdn_mt/radfun.f90
cdn_mt/radfun.f90
...
...
cdn_mt/magMoms.f90
0 → 100644
View file @
1d0c6cca
!--------------------------------------------------------------------------------
! Copyright (c) 2018 Peter Grünberg Institut, Forschungszentrum Jülich, Germany
! This file is part of FLEUR and available as free software under the conditions
! of the MIT license as expressed in the LICENSE file in more detail.
!--------------------------------------------------------------------------------
MODULE
m_magMoms
CONTAINS
SUBROUTINE
magMoms
(
dimension
,
input
,
atoms
,
chmom
)
USE
m_types
USE
m_xmlOutput
IMPLICIT
NONE
TYPE
(
t_dimension
),
INTENT
(
IN
)
::
dimension
TYPE
(
t_input
),
INTENT
(
IN
)
::
input
TYPE
(
t_atoms
),
INTENT
(
IN
)
::
atoms
REAL
,
INTENT
(
INOUT
)
::
chmom
(
atoms
%
ntype
,
dimension
%
jspd
)
INTEGER
::
iType
,
j
REAL
::
smom
CHARACTER
(
LEN
=
20
)
::
attributes
(
4
)
WRITE
(
6
,
FMT
=
8020
)
WRITE
(
16
,
FMT
=
8020
)
CALL
openXMLElement
(
'magneticMomentsInMTSpheres'
,(/
'units'
/),(/
'muBohr'
/))
DO
iType
=
1
,
atoms
%
ntype
smom
=
chmom
(
iType
,
1
)
-
chmom
(
iType
,
input
%
jspins
)
WRITE
(
6
,
FMT
=
8030
)
iType
,
smom
,
(
chmom
(
iType
,
j
),
j
=
1
,
input
%
jspins
)
WRITE
(
16
,
FMT
=
8030
)
iType
,
smom
,
(
chmom
(
iType
,
j
),
j
=
1
,
input
%
jspins
)
attributes
=
''
WRITE
(
attributes
(
1
),
'(i0)'
)
iType
WRITE
(
attributes
(
2
),
'(f15.10)'
)
smom
WRITE
(
attributes
(
3
),
'(f15.10)'
)
chmom
(
iType
,
1
)
WRITE
(
attributes
(
4
),
'(f15.10)'
)
chmom
(
iType
,
2
)
CALL
writeXMLElementFormPoly
(
'magneticMoment'
,(/
'atomType '
,
'moment '
,
'spinUpCharge '
,&
'spinDownCharge'
/),&
attributes
,
reshape
((/
8
,
6
,
12
,
14
,
6
,
15
,
15
,
15
/),(/
4
,
2
/)))
END
DO
CALL
closeXMLElement
(
'magneticMomentsInMTSpheres'
)
8020
FORMAT
(
/
,
/
,
2x
,
'--> magnetic moments in the spheres:'
,
/
,
2x
,
&
'mm --> type'
,
t22
,
'moment'
,
t33
,
'spin-up'
,
t43
,
'spin-down'
)
8030
FORMAT
(
2x
,
'--> mm'
,
i8
,
2x
,
3f12.5
)
END
SUBROUTINE
magMoms
END
MODULE
m_magMoms
cdn_mt/orbMagMoms.f90
View file @
1d0c6cca
!--------------------------------------------------------------------------------
! Copyright (c) 2018 Peter Grünberg Institut, Forschungszentrum Jülich, Germany
! This file is part of FLEUR and available as free software under the conditions
! of the MIT license as expressed in the LICENSE file in more detail.
!--------------------------------------------------------------------------------
MODULE
m_orbMagMoms
MODULE
m_orbMagMoms
CONTAINS
CONTAINS
...
...
main/cdngen.F90
View file @
1d0c6cca
...
@@ -35,6 +35,7 @@ SUBROUTINE cdngen(eig_id,mpi,input,banddos,sliceplot,vacuum,&
...
@@ -35,6 +35,7 @@ SUBROUTINE cdngen(eig_id,mpi,input,banddos,sliceplot,vacuum,&
USE
m_m_perp
USE
m_m_perp
USE
m_types
USE
m_types
USE
m_xmlOutput
USE
m_xmlOutput
USE
m_magMoms
USE
m_orbMagMoms
USE
m_orbMagMoms
#ifdef CPP_MPI
#ifdef CPP_MPI
USE
m_mpi_bc_potden
USE
m_mpi_bc_potden
...
@@ -74,7 +75,7 @@ SUBROUTINE cdngen(eig_id,mpi,input,banddos,sliceplot,vacuum,&
...
@@ -74,7 +75,7 @@ SUBROUTINE cdngen(eig_id,mpi,input,banddos,sliceplot,vacuum,&
TYPE
(
t_noco
)
::
noco_new
TYPE
(
t_noco
)
::
noco_new
!Local Scalars
!Local Scalars
REAL
fix
,
qtot
,
scor
,
seig
,
s
mom
,
s
tot
,
sval
,
dummy
REAL
fix
,
qtot
,
scor
,
seig
,
stot
,
sval
,
dummy
REAL
sum
,
fermiEnergyTemp
REAL
sum
,
fermiEnergyTemp
INTEGER
iter
,
ivac
,
j
,
jspin
,
jspmax
,
k
,
n
,
nt
,
ieig
,
ikpt
INTEGER
iter
,
ivac
,
j
,
jspin
,
jspmax
,
k
,
n
,
nt
,
ieig
,
ikpt
INTEGER
ityp
,
ilayer
,
urec
,
itype
,
iatom
INTEGER
ityp
,
ilayer
,
urec
,
itype
,
iatom
...
@@ -88,7 +89,6 @@ SUBROUTINE cdngen(eig_id,mpi,input,banddos,sliceplot,vacuum,&
...
@@ -88,7 +89,6 @@ SUBROUTINE cdngen(eig_id,mpi,input,banddos,sliceplot,vacuum,&
REAL
chmom
(
atoms
%
ntype
,
dimension
%
jspd
),
clmom
(
3
,
atoms
%
ntype
,
dimension
%
jspd
)
REAL
chmom
(
atoms
%
ntype
,
dimension
%
jspd
),
clmom
(
3
,
atoms
%
ntype
,
dimension
%
jspd
)
INTEGER
,
ALLOCATABLE
::
igq_fft
(:)
INTEGER
,
ALLOCATABLE
::
igq_fft
(:)
REAL
,
ALLOCATABLE
::
qvac
(:,:,:,:),
qvlay
(:,:,:,:,:)
REAL
,
ALLOCATABLE
::
qvac
(:,:,:,:),
qvlay
(:,:,:,:,:)
CHARACTER
(
LEN
=
20
)
::
attributes
(
4
)
!pk non-collinear (start)
!pk non-collinear (start)
REAL
rhoint
,
momint
,
alphdiff
(
atoms
%
ntype
)
REAL
rhoint
,
momint
,
alphdiff
(
atoms
%
ntype
)
...
@@ -325,6 +325,10 @@ SUBROUTINE cdngen(eig_id,mpi,input,banddos,sliceplot,vacuum,&
...
@@ -325,6 +325,10 @@ SUBROUTINE cdngen(eig_id,mpi,input,banddos,sliceplot,vacuum,&
WRITE
(
6
,
FMT
=
8010
)
n
,
stot
,
sval
,
scor
,
svdn
(
n
,
1
),
stdn
(
n
,
1
)
WRITE
(
6
,
FMT
=
8010
)
n
,
stot
,
sval
,
scor
,
svdn
(
n
,
1
),
stdn
(
n
,
1
)
WRITE
(
16
,
FMT
=
8010
)
n
,
stot
,
sval
,
scor
,
svdn
(
n
,
1
),
stdn
(
n
,
1
)
WRITE
(
16
,
FMT
=
8010
)
n
,
stot
,
sval
,
scor
,
svdn
(
n
,
1
),
stdn
(
n
,
1
)
END
DO
END
DO
CALL
magMoms
(
dimension
,
input
,
atoms
,
chmom
)
noco_new
=
noco
IF
(
noco
%
l_mperp
)
THEN
IF
(
noco
%
l_mperp
)
THEN
! angles in nocoinp file are (alph-alphdiff)
! angles in nocoinp file are (alph-alphdiff)
iatom
=
1
iatom
=
1
...
@@ -336,33 +340,13 @@ SUBROUTINE cdngen(eig_id,mpi,input,banddos,sliceplot,vacuum,&
...
@@ -336,33 +340,13 @@ SUBROUTINE cdngen(eig_id,mpi,input,banddos,sliceplot,vacuum,&
ELSE
ELSE
alphdiff
(
n
)
=
0.
alphdiff
(
n
)
=
0.
END
IF
END
IF
iatom
=
iatom
+
atoms
%
neq
(
n
)
END
DO
END
IF
WRITE
(
6
,
FMT
=
8020
)
WRITE
(
16
,
FMT
=
8020
)
noco_new
=
noco
CALL
openXMLElement
(
'magneticMomentsInMTSpheres'
,(/
'units'
/),(/
'muBohr'
/))
DO
n
=
1
,
atoms
%
ntype
smom
=
chmom
(
n
,
1
)
-
chmom
(
n
,
input
%
jspins
)
WRITE
(
6
,
FMT
=
8030
)
n
,
smom
,
(
chmom
(
n
,
j
),
j
=
1
,
input
%
jspins
)
WRITE
(
16
,
FMT
=
8030
)
n
,
smom
,
(
chmom
(
n
,
j
),
j
=
1
,
input
%
jspins
)
attributes
=
''
WRITE
(
attributes
(
1
),
'(i0)'
)
n
WRITE
(
attributes
(
2
),
'(f15.10)'
)
smom
WRITE
(
attributes
(
3
),
'(f15.10)'
)
chmom
(
n
,
1
)
WRITE
(
attributes
(
4
),
'(f15.10)'
)
chmom
(
n
,
2
)
CALL
writeXMLElementFormPoly
(
'magneticMoment'
,(/
'atomType '
,
'moment '
,
'spinUpCharge '
,&
'spinDownCharge'
/),&
attributes
,
reshape
((/
8
,
6
,
12
,
14
,
6
,
15
,
15
,
15
/),(/
4
,
2
/)))
IF
(
noco
%
l_mperp
)
THEN
!calculate the perpendicular part of the local moment
!calculate the perpendicular part of the local moment
!and relax the angle of the local moment or calculate
!and relax the angle of the local moment or calculate
!the constraint B-field.
!the constraint B-field.
CALL
m_perp
(
atoms
,
n
,
noco_new
,
vTot
%
mt
(:,
0
,:,:),
chmom
,
qa21
,
alphdiff
)
CALL
m_perp
(
atoms
,
n
,
noco_new
,
vTot
%
mt
(:,
0
,:,:),
chmom
,
qa21
,
alphdiff
)
END
IF
iatom
=
iatom
+
atoms
%
neq
(
n
)
END
DO
END
DO
CALL
closeXMLElement
(
'magneticMomentsInMTSpheres'
)
END
IF
!save the new nocoinp file if the dierctions of the local
!save the new nocoinp file if the dierctions of the local
!moments are relaxed or a constraint B-field is calculated.
!moments are relaxed or a constraint B-field is calculated.
...
@@ -404,9 +388,6 @@ SUBROUTINE cdngen(eig_id,mpi,input,banddos,sliceplot,vacuum,&
...
@@ -404,9 +388,6 @@ SUBROUTINE cdngen(eig_id,mpi,input,banddos,sliceplot,vacuum,&
'input%total'
,
t42
,
'valence'
,
t65
,
'core'
,
t90
,
&
'input%total'
,
t42
,
'valence'
,
t65
,
'core'
,
t90
,
&
'majority valence and input%total density'
,
/
)
'majority valence and input%total density'
,
/
)
8010
FORMAT
(
i13
,
2x
,
3e20.8
,
5x
,
2e20.8
)
8010
FORMAT
(
i13
,
2x
,
3e20.8
,
5x
,
2e20.8
)
8020
FORMAT
(
/
,
/
,
2x
,
'--> magnetic moments in the spheres:'
,
/
,
2x
,
&
'mm --> type'
,
t22
,
'moment'
,
t33
,
'spin-up'
,
t43
,
'spin-down'
)
8030
FORMAT
(
2x
,
'--> mm'
,
i8
,
2x
,
3f12.5
)
IF
(
sliceplot
%
slice
)
THEN
IF
(
sliceplot
%
slice
)
THEN
OPEN
(
20
,
file
=
'cdn_slice'
,
form
=
'unformatted'
,
status
=
'unknown'
)
OPEN
(
20
,
file
=
'cdn_slice'
,
form
=
'unformatted'
,
status
=
'unknown'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment