-
Notifications
You must be signed in to change notification settings - Fork 1
/
torque.go
77 lines (69 loc) · 2.51 KB
/
torque.go
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
package engine
import (
"github.com/mumax/3/cuda"
"github.com/mumax/3/data"
"github.com/mumax/3/util"
)
var (
Alpha ScalarParam
Xi ScalarParam
Pol ScalarParam
Lambda ScalarParam
EpsilonPrime ScalarParam
FixedLayer VectorParam
Torque vSetter // total torque in T
LLTorque vSetter // Landau-Lifshitz torque/γ0, in T
STTorque vAdder // Spin-transfer torque/γ0, in T
J excitation // Polarized electrical current density
MaxTorque *GetScalar
)
func init() {
Alpha.init("alpha", "", "Landau-Lifshitz damping constant", []derived{&temp_red})
Xi.init("xi", "", "Non-adiabaticity of spin-transfer-torque", nil)
J.init("J", "A/m2", "Electrical current density")
Pol.init("Pol", "", "Electrical current polarization", nil)
Pol.setUniform([]float64{1}) // default spin polarization
Lambda.init("Lambda", "", "Slonczewski Λ parameter", nil)
EpsilonPrime.init("EpsilonPrime", "", "Slonczewski secondairy STT term ε'", nil)
FixedLayer.init("FixedLayer", "", "Slonczewski fixed layer polarization")
LLTorque.init("LLtorque", "T", "Landau-Lifshitz torque/γ0", SetLLTorque)
STTorque.init("STtorque", "T", "Spin-transfer torque/γ0", AddSTTorque)
Torque.init("torque", "T", "Total torque/γ0", SetTorque)
MaxTorque = NewGetScalar("maxTorque", "T", "Maximum torque over all cells", GetMaxTorque)
}
// Sets dst to the current total torque
func SetTorque(dst *data.Slice) {
SetLLTorque(dst)
AddSTTorque(dst)
}
// Sets dst to the current Landau-Lifshitz torque
func SetLLTorque(dst *data.Slice) {
B_eff.Set(dst) // calc and store B_eff
cuda.LLTorque(dst, M.Buffer(), dst, Alpha.gpuLUT1(), regions.Gpu()) // overwrite dst with torque
}
// Adds the current spin transfer torque to dst
func AddSTTorque(dst *data.Slice) {
if J.isZero() {
return
}
util.AssertMsg(!Pol.isZero(), "spin polarization should not be 0")
jspin, rec := J.Slice()
if rec {
defer cuda.Recycle(jspin)
}
// TODO: select, xi is not enough
cuda.AddZhangLiTorque(dst, M.Buffer(), jspin, Bsat.gpuLUT1(),
Alpha.gpuLUT1(), Xi.gpuLUT1(), Pol.gpuLUT1(), regions.Gpu(), Mesh())
if !FixedLayer.isZero() {
cuda.AddSlonczewskiTorque(dst, M.Buffer(), jspin, FixedLayer.gpuLUT(), Msat.gpuLUT1(),
Alpha.gpuLUT1(), Pol.gpuLUT1(), Lambda.gpuLUT1(), EpsilonPrime.gpuLUT1(), regions.Gpu(), Mesh())
}
}
// Gets
func GetMaxTorque() float64 {
torque, recycle := Torque.Slice()
if recycle {
defer cuda.Recycle(torque)
}
return cuda.MaxVecNorm(torque)
}