***
Wartungsfenster jeden ersten Mittwoch vormittag im Monat
***
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
COMMICS
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ASC
Praetorius
COMMICS
Commits
acef0b9d
Commit
acef0b9d
authored
6 years ago
by
dpraetor
Browse files
Options
Downloads
Patches
Plain Diff
ACOM exp updated, bulk DMI
parent
e1413843
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tests/structuredExperiment.py
+8
-6
8 additions, 6 deletions
tests/structuredExperiment.py
tests/structuredExperiment_convOrder.py
+10
-5
10 additions, 5 deletions
tests/structuredExperiment_convOrder.py
with
18 additions
and
11 deletions
tests/structuredExperiment.py
+
8
−
6
View file @
acef0b9d
from
commix
import
*
geo
=
Geometry
(
geometry
=
Cuboid
(
120
,
120
,
10
),
meshSize
=
(
5
,
5
,
5
),
scaling
=
1.0e-09
,
structuredMesh
=
True
)
h
=
10
/
7
geo
=
Geometry
(
geometry
=
Cuboid
(
120
,
120
,
10
),
meshSize
=
(
h
,
h
,
h
),
scaling
=
1.0e-09
,
structuredMesh
=
True
)
from
math
import
pi
par
=
Parameters
(
A
=
pi
*
2.0e-11
,
Ms
=
1.0e6
,
alpha
=
0.1
,
K
=
0.0
\
,
D
=
pi
*
2.0e-3
,
dmCoupling
=
"
interfacial
"
,
timeStepSize
=
0.1e-12
)
,
D
=
pi
*
2.0e-3
,
dmCoupling
=
"
bulk
"
,
timeStepSize
=
0.1e-12
,
theta
=
1.0
)
par
.
maxwellCoupling
=
"
none
"
par
.
m0
=
(
0
,
0
,
1
)
nuc
=
Integrator
(
scheme
=
TPS1
,
geometry
=
geo
,
parameters
=
par
,
numthreads
=
4
)
nuc
.
SetResultsFolder
(
"
Exp
Structured_Result
"
)
skyrmion
=
Integrator
(
scheme
=
TPS1
,
geometry
=
geo
,
parameters
=
par
,
numthreads
=
4
)
skyrmion
.
SetResultsFolder
(
"
ACOM_
Structured_Result
"
)
nuc
.
RecordMagnetization
(
record
=
True
,
maxwell
=
False
,
every
=
10e-12
)
skyrmion
.
RecordMagnetization
(
record
=
True
,
maxwell
=
False
,
every
=
10e-12
)
nuc
.
Integrate
(
duration
=
1.36e-09
)
skyrmion
.
Integrate
(
duration
=
1.36e-09
)
This diff is collapsed.
Click to expand it.
tests/structuredExperiment_convOrder.py
+
10
−
5
View file @
acef0b9d
from
commix
import
*
from
commix.addons
import
ConvergenceOrderWrapper
geo
=
Geometry
(
geometry
=
Cuboid
(
120
,
120
,
10
),
meshSize
=
(
5
,
5
,
5
),
scaling
=
1.0e-09
,
structuredMesh
=
True
)
h
=
10
/
4
geo
=
Geometry
(
geometry
=
Cuboid
(
120
,
120
,
10
),
meshSize
=
(
h
,
h
,
h
),
scaling
=
1.0e-09
,
structuredMesh
=
True
)
from
math
import
pi
par
=
Parameters
(
A
=
pi
*
2.0e-11
,
Ms
=
1.0e6
,
alpha
=
0.1
,
K
=
0.0
\
,
D
=
pi
*
2.0e-3
,
dmCoupling
=
"
interfacial
"
,
timeStepSize
=
0.
1e-12
\
,
T_start
=
0.0
,
T_end
=
1.36e-
0
9
)
,
D
=
pi
*
2.0e-3
,
dmCoupling
=
"
bulk
"
,
timeStepSize
=
0.
0125e-12
,
theta
=
1.0
\
,
T_start
=
0.0
,
T_end
=
1.36e-9
)
par
.
maxwellCoupling
=
"
none
"
par
.
m0
=
(
0
,
0
,
1
)
wrapper
=
ConvergenceOrderWrapper
(
referenceScheme
=
TPS1
,
otherScheme
=
TPS1
,
nrSimulations
=
5
,
geometry
=
geo
,
parameters
=
par
,
numthreads
=
4
)
out
=
OutputOptions
()
out
.
video
=
False
wrapper
=
ConvergenceOrderWrapper
(
referenceScheme
=
TPS1
,
otherScheme
=
TPS1
,
nrSimulations
=
5
,
geometry
=
geo
,
parameters
=
par
,
output
=
out
,
numthreads
=
4
)
wrapper
.
SetResultsFolder
(
"
ExpStructured_ConvOrder
_Result
"
)
wrapper
.
SetResultsFolder
(
"
ACOM_ConvOrder_Structured
_Result
"
)
wrapper
.
GetReady
()
wrapper
.
Do
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment