charges module
Module contains the abstract base class Charge and example subclasses.
Charge is an abstract base class representing a point charge. The class has
abstract methods for the position, velocity, and acceleration of the charge in
the x, y, and z directions.
Subclasses, such as OscillatingCharge, define their own time-dependent
trajectories. These classes are used by the Simulation class to perform
electromagnetism calculations and simulations.
All units are in SI.
Charge
Bases: ABC
Abstract base class used to define a point charge object.
Subclasses implement their unique position, velocity, and acceleration methods in x, y, and z as functions of time. By default, the velocity and acceleration values are determined using finite difference approximations from the position methods; however, they can also be explicitly specified.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
q |
float
|
Charge value, can be positive or negative. |
required |
h |
float
|
Limit for finite difference calculations for vel and acc. |
1e-20
|
Source code in pycharge/charges.py
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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 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 | |
solve_time(tr, t, x, y, z)
Return equation to solve for the retarded time of the charge.
Source code in pycharge/charges.py
148 149 150 151 152 153 154 | |
xacc(t)
Return x acceleration of the charge at specified array of times.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
t |
Union[ndarray, float]
|
3D meshgrid array of time values. |
required |
Returns:
| Type | Description |
|---|---|
Union[ndarray, float]
|
x acceleration at time values. |
Source code in pycharge/charges.py
115 116 117 118 119 120 121 122 123 124 | |
xpos(t)
abstractmethod
Return x position of the charge at specified array of times.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
t |
Union[ndarray, float]
|
3D meshgrid array of time values. |
required |
Returns:
| Type | Description |
|---|---|
Union[ndarray, float]
|
x positions at time values. |
Source code in pycharge/charges.py
49 50 51 52 53 54 55 56 57 58 | |
xvel(t)
Return x velocity of the charge at specified array of times.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
t |
Union[ndarray, float]
|
3D meshgrid array of time values. |
required |
Returns:
| Type | Description |
|---|---|
Union[ndarray, float]
|
x velocity at time values. |
Source code in pycharge/charges.py
82 83 84 85 86 87 88 89 90 91 | |
yacc(t)
Return y acceleration of the charge at specified array of times.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
t |
Union[ndarray, float]
|
3D meshgrid array of time values. |
required |
Returns:
| Type | Description |
|---|---|
Union[ndarray, float]
|
y acceleration at time values. |
Source code in pycharge/charges.py
126 127 128 129 130 131 132 133 134 135 | |
ypos(t)
abstractmethod
Return y position of the charge at specified array of times.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
t |
Union[ndarray, float]
|
3D meshgrid array of time values. |
required |
Returns:
| Type | Description |
|---|---|
Union[ndarray, float]
|
y position at time values. |
Source code in pycharge/charges.py
60 61 62 63 64 65 66 67 68 69 | |
yvel(t)
Return y velocity of the charge at specified array of times.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
t |
Union[ndarray, float]
|
3D meshgrid array of time values. |
required |
Returns:
| Type | Description |
|---|---|
Union[ndarray, float]
|
y velocity at time values. |
Source code in pycharge/charges.py
93 94 95 96 97 98 99 100 101 102 | |
zacc(t)
Return z acceleration of the charge at specified array of times.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
t |
Union[ndarray, float]
|
3D meshgrid array of time values. |
required |
Returns:
| Type | Description |
|---|---|
Union[ndarray, float]
|
z acceleration at time values. |
Source code in pycharge/charges.py
137 138 139 140 141 142 143 144 145 146 | |
zpos(t)
abstractmethod
Return z position of the charge at specified array of times.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
t |
Union[ndarray, float]
|
3D meshgrid array of time values. |
required |
Returns:
| Type | Description |
|---|---|
Union[ndarray, float]
|
z position at time values. |
Source code in pycharge/charges.py
71 72 73 74 75 76 77 78 79 80 | |
zvel(t)
Return z velocity of the charge at specified array of times.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
t |
Union[ndarray, float]
|
3D meshgrid array of time values. |
required |
Returns:
| Type | Description |
|---|---|
Union[ndarray, float]
|
z velocity at time values. |
Source code in pycharge/charges.py
104 105 106 107 108 109 110 111 112 113 | |
LinearAcceleratingCharge
Bases: Charge
Linearly accelerating charge along the x-axis.
At t<0, the charge is stationary at the origin (x=0, y=0, z=0) and
begins accelerating at t=0. The charge stops accelerating at the time
given by stop_t and continues moving at a constant velocity.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
acceleration |
float
|
Accleration along x-axis. Positive value is in +x direction, negative is in -x direction. |
required |
stop_t |
Optional[float]
|
Time when charge stops accelerating. If
|
None
|
q |
float
|
Charge value, can be positive or negative. Default is |
e
|
Source code in pycharge/charges.py
414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 | |
LinearDeceleratingCharge
Bases: Charge
Linearly decelerating charge along the x-axis.
At t<0, the charge is moving at the value of initial_speed. At t=0,
the charge is at the origin (x=0, y=0, z=0) and decelerates until the
time given by stop_t and continues moving at a constant velocity.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
deceleration |
float
|
Deceleration along x-axis. Positive value is in +x direction, negative is in -x direction. |
required |
initial_speed |
float
|
Initial speed of charge at t<0 along x-axis. |
required |
stop_t |
Optional[float]
|
Time when the charge stops decelerating. If
|
None
|
q |
float
|
Charge value, can be positive or negative. Default is |
e
|
Source code in pycharge/charges.py
486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 | |
LinearVelocityCharge
Bases: Charge
Charge moving with constant velocity along the x-axis.
At t=0, the charge is at the position given by init_pos with the
magnitude of the velocity given by speed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
speed |
float
|
Speed of the charge along the x-axis. Positive value is in +x direction, negative is in -x direction. |
required |
init_pos |
float
|
Initial x position at t=0. |
required |
q |
float
|
Charge value, can be positive or negative. Default is |
e
|
Source code in pycharge/charges.py
561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 | |
OrbittingCharge
Bases: Charge
Radially orbitting charge in the x-y plane.
At t=0, the charge is at the position (x=radius, y=0, z=0) and orbits
counter-clockwise.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
radius |
float
|
Radius of the orbitting charge trajectory. |
required |
omega |
float
|
Angular frequency of the orbit (units: rad/s). |
required |
start_zero |
bool
|
Determines if the charge begins orbitting at t=0.
Defaults to |
False
|
stop_t |
Optional[float]
|
Time when the charge stops orbitting.
If |
None
|
q |
float
|
Charge value, can be positive or negative. Default is |
e
|
Source code in pycharge/charges.py
324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 | |
OscillatingCharge
Bases: Charge
Sinusoidally oscillating charge along a specified axis.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
origin |
Tuple[float, float, float]
|
List of x, y, and z values for the oscillating charge's origin. |
required |
direction |
Tuple[float, float, float]
|
List of x, y, and z values for the charge direction vector. |
required |
amplitude |
float
|
Amplitude of the oscillations. |
required |
omega |
float
|
Angular frequency of the oscillations (units: rad/s). |
required |
start_zero |
bool
|
Determines if the charge begins oscillating at t=0.
Defaults to |
False
|
stop_t |
Optional[float]
|
Time when the charge stops oscillating.
If |
None
|
q |
float
|
Charge value, can be positive or negative. Default is |
e
|
Source code in pycharge/charges.py
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 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 | |
StationaryCharge
Bases: Charge
Stationary point charge.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
position |
Tuple[float, float, float]
|
List of x, y, and z values for the stationary position. |
required |
q |
float
|
Charge value, can be positive or negative. Default is |
e
|
Source code in pycharge/charges.py
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 194 195 196 197 | |