Domain wall
DW
Initial conditions for the phi of DW equation.
Source code in cmtj/models/domain_dynamics.py
16 17 18 19 20 21 |
|
DomainWallDynamics
dataclass
Domain Wall dynamics class.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
H |
VectorObj
|
applied magnetic field vector. |
required |
alpha |
float
|
Gilbert damping. |
required |
Ms |
float
|
magnetisation saturation [A/m]. |
required |
thickness |
float
|
thickness of the FM material. |
required |
SHE_angle |
float
|
Spin Hall Effect angle. |
required |
D |
float
|
DMI constant. |
required |
Ku |
float
|
perpendicular anisotropy constant. |
required |
Kp |
float
|
inplane anisotropy constant. |
required |
A |
float
|
exchange constant. |
1e-11
|
beta |
float
|
STT beta parameter. |
1
|
p |
float
|
STT polarisation efficiency. |
1
|
V0_pin |
float
|
pinning voltage constant. |
1.65e-20
|
V0_edge |
float
|
edge voltage constant. |
0
|
pinning |
float
|
the pinning period. |
3e-08
|
Lx |
float
|
z-dimension of the FM block. |
1.2e-07
|
Ly |
float
|
y-dimension of the FM block. |
1.2e-07
|
Lz |
float
|
z-dimension of the FM block. |
3e-09
|
Q |
int
|
up-down or down-up wall parameter (either 1 or -1). |
1
|
Hr |
float
|
Rashba field [A/m]. |
0
|
moving_field |
Literal['perpendicular', 'inplane']
|
whether the anisotropy field is perpendicular or parallel |
'perpendicular'
|
relax_dw |
DWRelax
|
whether to relax the domain width. See DWRelax class. For classical formulation see: Current-driven dynamics of chiral ferromagnetic domain walls, Emori et al, 2013 |
DWRelax.STATIC
|
Source code in cmtj/models/domain_dynamics.py
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 |
|
get_Hdmi(domain_width)
Returns the DMI field
Source code in cmtj/models/domain_dynamics.py
183 184 185 |
|
get_inplane_anisotropy_field()
Returns the in-plane anisotropy field
Source code in cmtj/models/domain_dynamics.py
191 192 193 |
|
get_perpendicular_anisotropy_field()
Returns the perpeanisotropy field
Source code in cmtj/models/domain_dynamics.py
187 188 189 |
|
get_unrelaxed_domain_width(effective=False)
Domain width is based off the effective perpendicular anisotropy. We reduce the perpendicular anisotropy by demagnetising field
Source code in cmtj/models/domain_dynamics.py
170 171 172 173 174 175 |
|
set_current_function(driver)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
driver |
Callable
|
A function of time that returns the current density |
required |
Source code in cmtj/models/domain_dynamics.py
177 178 179 180 181 |
|
MultilayerWallDynamics
dataclass
Source code in cmtj/models/domain_dynamics.py
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 |
|
multilayer_dw_llg(t, vec)
Solve the Thiaville llg equation for LLG.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
t |
current simulation time. |
required | |
vec |
contains [X, phi, delta], current DW position, its angle and domain width. |
required |
Returns:
Type | Description |
---|---|
velocity and change of angle and domain width. |
Source code in cmtj/models/domain_dynamics.py
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
|
run(sim_time, starting_conditions, max_step=1e-10)
Run simulation of DW dynamics.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
sim_time |
float
|
total simulation time (simulation units). |
required |
starting_conditions |
List[float]
|
starting position and angle of the DW. |
required |
max_step |
float
|
maximum allowed step of the RK45 method. |
1e-10
|
Source code in cmtj/models/domain_dynamics.py
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 |
|