File tree Expand file tree Collapse file tree 2 files changed +15
-11
lines changed Expand file tree Collapse file tree 2 files changed +15
-11
lines changed Original file line number Diff line number Diff line change 3
3
from .llg_stt import LLG_STT
4
4
from .llg_stt_cpp import LLG_STT_CPP
5
5
from fidimag .common .steepest_descent import SteepestDescent
6
- from .minimiser import Minimiser
6
+ # from .minimiser import Minimiser
7
7
8
8
import fidimag .common .skyrmion_number
9
9
import fidimag .common .helper as helper
17
17
'llg_stt' : LLG_STT ,
18
18
'llg_stt_cpp' : LLG_STT_CPP ,
19
19
'steepest_descent' : SteepestDescent ,
20
- 'minimiser' : Minimiser
20
+ # 'minimiser': Minimiser
21
21
}
22
22
23
23
Original file line number Diff line number Diff line change 5
5
from . import llg_stt_cpp
6
6
from . import baryakhtar
7
7
from fidimag .common import steepest_descent
8
- from . import minimiser
9
8
10
9
import fidimag .extensions .micro_clib as micro_clib
11
10
import fidimag .common .helper as helper
20
19
'llbar' : baryakhtar .LLBar ,
21
20
'llbar_full' : baryakhtar .LLBarFull ,
22
21
'steepest_descent' : steepest_descent .SteepestDescent ,
23
- 'minimiser' : minimiser .Minimiser
24
22
}
25
23
26
24
@@ -39,13 +37,19 @@ class Sim(SimBase):
39
37
driver :: A string with one of the following drivers to evolve
40
38
the micromagnetic system:
41
39
42
- llg - (default) the Landau-Lifshitz-Gilbert
43
- equation
44
- llg_stt - LLG w. spin transfer torque
45
- llg_stt_cpp - LLG w. spin transfer torque perpendicular
46
- to the plane (?)
47
- llbar - Landau-Lifshitz-Baryakhtar equation
48
- llbar_full
40
+ llg - (default) the Landau-Lifshitz-Gilbert
41
+ equation
42
+
43
+ llg_stt - LLG w. spin transfer torque
44
+
45
+ llg_stt_cpp - LLG w. spin transfer torque perpendicular
46
+ to the plane (?)
47
+
48
+ llbar - Landau-Lifshitz-Baryakhtar equation
49
+ llbar_full
50
+
51
+ steepest_descent - Optimised steepest descent minimisation
52
+ [JAP 115, 17D118 (2014)]
49
53
50
54
** Most of the methods inherit from the Base Simulation class that
51
55
can be found in the common folder
You can’t perform that action at this time.
0 commit comments