Skip to content

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
class Charge(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.

    Args:
        q (float): Charge value, can be positive or negative.
        h (float): Limit for finite difference calculations for vel and acc.
    """

    def __init__(self, q: float, h: float = 1e-20) -> None:
        self.q = q
        self.h = h

    def __eq__(self, other: Any) -> bool:
        return (isinstance(other, self.__class__)
                and self.__dict__ == other.__dict__)

    @abstractmethod
    def xpos(self, t: Union[ndarray, float]) -> Union[ndarray, float]:
        """Return x position of the charge at specified array of times.

        Args:
            t: 3D meshgrid array of time values.

        Returns:
            x positions at time values.
        """

    @abstractmethod
    def ypos(self, t: Union[ndarray, float]) -> Union[ndarray, float]:
        """Return y position of the charge at specified array of times.

        Args:
            t: 3D meshgrid array of time values.

        Returns:
            y position at time values.
        """

    @abstractmethod
    def zpos(self, t: Union[ndarray, float]) -> Union[ndarray, float]:
        """Return z position of the charge at specified array of times.

        Args:
            t: 3D meshgrid array of time values.

        Returns:
            z position at time values.
        """

    def xvel(self, t: Union[ndarray, float]) -> Union[ndarray, float]:
        """Return x velocity of the charge at specified array of times.

        Args:
            t: 3D meshgrid array of time values.

        Returns:
            x velocity at time values.
        """
        return (self.xpos(t+0.5*self.h)-self.xpos(t-0.5*self.h))/self.h

    def yvel(self, t: Union[ndarray, float]) -> Union[ndarray, float]:
        """Return y velocity of the charge at specified array of times.

        Args:
            t: 3D meshgrid array of time values.

        Returns:
            y velocity at time values.
        """
        return (self.ypos(t+0.5*self.h)-self.ypos(t-0.5*self.h))/self.h

    def zvel(self, t: Union[ndarray, float]) -> Union[ndarray, float]:
        """Return z velocity of the charge at specified array of times.

        Args:
            t: 3D meshgrid array of time values.

        Returns:
            z velocity at time values.
        """
        return (self.zpos(t+0.5*self.h)-self.zpos(t-0.5*self.h))/self.h

    def xacc(self, t: Union[ndarray, float]) -> Union[ndarray, float]:
        """Return x acceleration of the charge at specified array of times.

        Args:
            t: 3D meshgrid array of time values.

        Returns:
            x acceleration at time values.
        """
        return (self.xvel(t+0.5*self.h)-self.xvel(t-0.5*self.h))/self.h

    def yacc(self, t: Union[ndarray, float]) -> Union[ndarray, float]:
        """Return y acceleration of the charge at specified array of times.

        Args:
            t: 3D meshgrid array of time values.

        Returns:
            y acceleration at time values.
        """
        return (self.yvel(t+0.5*self.h)-self.yvel(t-0.5*self.h))/self.h

    def zacc(self, t: Union[ndarray, float]) -> Union[ndarray, float]:
        """Return z acceleration of the charge at specified array of times.

        Args:
            t: 3D meshgrid array of time values.

        Returns:
            z acceleration at time values.
        """
        return (self.zvel(t+0.5*self.h)-self.zvel(t-0.5*self.h))/self.h

    def solve_time(
        self, tr: ndarray, t: ndarray, x: ndarray, y: ndarray, z: ndarray
    ) -> ndarray:
        """Return equation to solve for the retarded time of the charge."""
        # Griffiths Eq. 10.55
        return ((x-self.xpos(tr))**2 + (y-self.ypos(tr))**2
                + (z-self.zpos(tr))**2)**0.5 - c*(t-tr)

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
def solve_time(
    self, tr: ndarray, t: ndarray, x: ndarray, y: ndarray, z: ndarray
) -> ndarray:
    """Return equation to solve for the retarded time of the charge."""
    # Griffiths Eq. 10.55
    return ((x-self.xpos(tr))**2 + (y-self.ypos(tr))**2
            + (z-self.zpos(tr))**2)**0.5 - c*(t-tr)

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
def xacc(self, t: Union[ndarray, float]) -> Union[ndarray, float]:
    """Return x acceleration of the charge at specified array of times.

    Args:
        t: 3D meshgrid array of time values.

    Returns:
        x acceleration at time values.
    """
    return (self.xvel(t+0.5*self.h)-self.xvel(t-0.5*self.h))/self.h

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
@abstractmethod
def xpos(self, t: Union[ndarray, float]) -> Union[ndarray, float]:
    """Return x position of the charge at specified array of times.

    Args:
        t: 3D meshgrid array of time values.

    Returns:
        x positions at time values.
    """

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
def xvel(self, t: Union[ndarray, float]) -> Union[ndarray, float]:
    """Return x velocity of the charge at specified array of times.

    Args:
        t: 3D meshgrid array of time values.

    Returns:
        x velocity at time values.
    """
    return (self.xpos(t+0.5*self.h)-self.xpos(t-0.5*self.h))/self.h

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
def yacc(self, t: Union[ndarray, float]) -> Union[ndarray, float]:
    """Return y acceleration of the charge at specified array of times.

    Args:
        t: 3D meshgrid array of time values.

    Returns:
        y acceleration at time values.
    """
    return (self.yvel(t+0.5*self.h)-self.yvel(t-0.5*self.h))/self.h

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
@abstractmethod
def ypos(self, t: Union[ndarray, float]) -> Union[ndarray, float]:
    """Return y position of the charge at specified array of times.

    Args:
        t: 3D meshgrid array of time values.

    Returns:
        y position at time values.
    """

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
def yvel(self, t: Union[ndarray, float]) -> Union[ndarray, float]:
    """Return y velocity of the charge at specified array of times.

    Args:
        t: 3D meshgrid array of time values.

    Returns:
        y velocity at time values.
    """
    return (self.ypos(t+0.5*self.h)-self.ypos(t-0.5*self.h))/self.h

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
def zacc(self, t: Union[ndarray, float]) -> Union[ndarray, float]:
    """Return z acceleration of the charge at specified array of times.

    Args:
        t: 3D meshgrid array of time values.

    Returns:
        z acceleration at time values.
    """
    return (self.zvel(t+0.5*self.h)-self.zvel(t-0.5*self.h))/self.h

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
@abstractmethod
def zpos(self, t: Union[ndarray, float]) -> Union[ndarray, float]:
    """Return z position of the charge at specified array of times.

    Args:
        t: 3D meshgrid array of time values.

    Returns:
        z position at time values.
    """

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
def zvel(self, t: Union[ndarray, float]) -> Union[ndarray, float]:
    """Return z velocity of the charge at specified array of times.

    Args:
        t: 3D meshgrid array of time values.

    Returns:
        z velocity at time values.
    """
    return (self.zpos(t+0.5*self.h)-self.zpos(t-0.5*self.h))/self.h

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, the charge stops accelerating when the velocity reaches 0.999c. Defaults to None.

None
q float

Charge value, can be positive or negative. Default is e.

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
class LinearAcceleratingCharge(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.

    Args:
        acceleration (float): Accleration along x-axis. Positive value is in +x
            direction, negative is in -x direction.
        stop_t (Optional[float]): Time when charge stops accelerating. If
            `None`, the charge stops accelerating when the velocity reaches
            `0.999c`. Defaults to `None`.
        q (float): Charge value, can be positive or negative. Default is `e`.
    """

    def __init__(
        self,
        acceleration: float,
        stop_t: Optional[float] = None,
        q: float = e
    ) -> None:
        super().__init__(q)
        self.acceleration = acceleration
        if stop_t is None:
            self.stop_t = 0.999*c/acceleration  # Ensures velocity < c
        else:
            self.stop_t = stop_t

    def xpos(self, t: Union[ndarray, float]) -> ndarray:
        t = np.array(t)
        xpos = 0.5*self.acceleration*t**2
        xpos[t < 0] = 0
        xpos[t > self.stop_t] = (
            0.5*self.acceleration*self.stop_t**2
            + self.acceleration*self.stop_t * (t[t > self.stop_t]-self.stop_t)
        )
        return xpos

    def ypos(self, t: Union[ndarray, float]) -> float:
        return 0

    def zpos(self, t: Union[ndarray, float]) -> float:
        return 0

    def xvel(self, t: Union[ndarray, float]) -> ndarray:
        t = np.array(t)
        xvel = self.acceleration*t
        xvel[t < 0] = 0
        xvel[t > self.stop_t] = self.acceleration*self.stop_t
        return xvel

    def yvel(self, t: Union[ndarray, float]) -> float:
        return 0

    def zvel(self, t: Union[ndarray, float]) -> float:
        return 0

    def xacc(self, t: Union[ndarray, float]) -> ndarray:
        t = np.array(t)
        xacc = self.acceleration*np.ones(t.shape)
        xacc[t < 0] = 0
        xacc[t > self.stop_t] = 0
        return xacc

    def yacc(self, t: Union[ndarray, float]) -> float:
        return 0

    def zacc(self, t: Union[ndarray, float]) -> float:
        return 0

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, the charge stops decelerating when velocity reaches zero. Defaults to None.

None
q float

Charge value, can be positive or negative. Default is e.

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
class LinearDeceleratingCharge(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.

    Args:
        deceleration (float): Deceleration along x-axis. Positive value is in
            +x direction, negative is in -x direction.
        initial_speed (float): Initial speed of charge at t<0 along x-axis.
        stop_t (Optional[float]): Time when the charge stops decelerating. If
            `None`, the charge stops decelerating when velocity reaches zero.
            Defaults to `None`.
        q (float): Charge value, can be positive or negative. Default is `e`.
    """

    def __init__(
        self,
        deceleration: float,
        initial_speed: float,
        stop_t: Optional[float] = None,
        q: float = e
    ) -> None:
        super().__init__(q)
        self.deceleration = deceleration
        self.initial_speed = initial_speed
        if stop_t is None:  # Charge stops moving when velocity reaches zero.
            self.stop_t = initial_speed/deceleration
        else:
            self.stop_t = stop_t

    def xpos(self, t: Union[ndarray, float]) -> ndarray:
        t = np.array(t)
        xpos = self.initial_speed*t
        xpos[t > 0] = (self.initial_speed*t[t > 0]
                       - 0.5*self.deceleration*t[t > 0]**2)
        xpos[t > self.stop_t] = (self.initial_speed * self.stop_t
                                 - 0.5*self.deceleration*self.stop_t**2)
        return xpos

    def ypos(self, t: Union[ndarray, float]) -> float:
        return 0

    def zpos(self, t: Union[ndarray, float]) -> float:
        return 0

    def xvel(self, t: Union[ndarray, float]) -> ndarray:
        t = np.array(t)
        xvel = self.initial_speed*np.ones(t.shape)
        xvel[t > 0] = self.initial_speed - self.deceleration*t[t > 0]
        xvel[t > self.stop_t] = (self.initial_speed
                                 - self.deceleration*self.stop_t)
        return xvel

    def yvel(self, t: Union[ndarray, float]) -> float:
        return 0

    def zvel(self, t: Union[ndarray, float]) -> float:
        return 0

    def xacc(self, t: Union[ndarray, float]) -> ndarray:
        t = np.array(t)
        xacc = np.zeros(t.shape)
        xacc[t > 0] = -self.deceleration
        xacc[t > self.stop_t] = 0
        return xacc

    def yacc(self, t: Union[ndarray, float]) -> float:
        return 0

    def zacc(self, t: Union[ndarray, float]) -> float:
        return 0

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.

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
class LinearVelocityCharge(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`.

    Args:
        speed (float): Speed of the charge along the x-axis. Positive value is
            in +x direction, negative is in -x direction.
        init_pos (float): Initial x position at t=0.
        q (float): Charge value, can be positive or negative. Default is `e`.
    """

    def __init__(self, speed: float, init_pos: float, q: float = e) -> None:
        super().__init__(q)
        self.speed = speed
        self.init_pos = init_pos

    def xpos(self, t: Union[ndarray, float]) -> ndarray:
        t = np.array(t)
        return self.speed*t + self.init_pos

    def ypos(self, t: Union[ndarray, float]) -> float:
        return 0

    def zpos(self, t: Union[ndarray, float]) -> float:
        return 0

    def xvel(self, t: Union[ndarray, float]) -> float:
        return self.speed

    def yvel(self, t: Union[ndarray, float]) -> float:
        return 0

    def zvel(self, t: Union[ndarray, float]) -> float:
        return 0

    def xacc(self, t: Union[ndarray, float]) -> float:
        return 0

    def yacc(self, t: Union[ndarray, float]) -> float:
        return 0

    def zacc(self, t: Union[ndarray, float]) -> float:
        return 0

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.

False
stop_t Optional[float]

Time when the charge stops orbitting. If None, the charge never stops orbitting. Defaults to None.

None
q float

Charge value, can be positive or negative. Default is e.

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
class OrbittingCharge(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.

    Args:
        radius (float): Radius of the orbitting charge trajectory.
        omega (float): Angular frequency of the orbit (units: rad/s).
        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`, the charge never stops orbitting. Defaults to `None`.
        q (float): Charge value, can be positive or negative. Default is `e`.
    """

    def __init__(
        self,
        radius: float,
        omega: float,
        start_zero: bool = False,
        stop_t: Optional[float] = None,
        q: float = e
    ) -> None:
        super().__init__(q)
        self.radius = radius
        self.omega = omega
        self.start_zero = start_zero
        self.stop_t = stop_t

    def xpos(self, t: Union[ndarray, float]) -> ndarray:
        xpos = self.radius*np.cos(self.omega*t)
        if self.start_zero:
            xpos[t < 0] = self.radius
        if self.stop_t is not None:
            xpos[t > self.stop_t] = (self.radius
                                     * np.cos(self.omega*self.stop_t))
        return xpos

    def ypos(self, t: Union[ndarray, float]) -> ndarray:
        ypos = self.radius*np.sin(self.omega*t)
        if self.start_zero:
            ypos[t < 0] = 0
        if self.stop_t is not None:
            ypos[t > self.stop_t] = (self.radius
                                     * np.sin(self.omega*self.stop_t))
        return ypos

    def zpos(self, t: Union[ndarray, float]) -> float:
        return 0

    def xvel(self, t: Union[ndarray, float]) -> ndarray:
        xvel = -self.radius*self.omega*np.sin(self.omega*t)
        if self.start_zero:
            xvel[t < 0] = 0
        if self.stop_t is not None:
            xvel[t > self.stop_t] = 0
        return xvel

    def yvel(self, t: Union[ndarray, float]) -> ndarray:
        yvel = self.radius*self.omega*np.cos(self.omega*t)
        if self.start_zero:
            yvel[t < 0] = 0
        if self.stop_t is not None:
            yvel[t > self.stop_t] = 0
        return yvel

    def zvel(self, t: Union[ndarray, float]) -> float:
        return 0

    def xacc(self, t: Union[ndarray, float]) -> ndarray:
        xacc = -self.radius*self.omega**2*np.cos(self.omega*t)
        if self.start_zero:
            xacc[t < 0] = 0
        if self.stop_t is not None:
            xacc[t > self.stop_t] = 0
        return xacc

    def yacc(self, t: Union[ndarray, float]) -> ndarray:
        yacc = -self.radius*self.omega**2*np.sin(self.omega*t)
        if self.start_zero:
            yacc[t < 0] = 0
        if self.stop_t is not None:
            yacc[t > self.stop_t] = 0
        return yacc

    def zacc(self, t: Union[ndarray, float]) -> float:
        return 0

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.

False
stop_t Optional[float]

Time when the charge stops oscillating. If None, the charge never stops oscillating. Defaults to None.

None
q float

Charge value, can be positive or negative. Default is e.

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
class OscillatingCharge(Charge):
    """Sinusoidally oscillating charge along a specified axis.

    Args:
        origin (Tuple[float, float, float]): List of x, y, and z values for
            the oscillating charge's origin.
        direction (Tuple[float, float, float]): List of x, y, and z values
            for the charge direction vector.
        amplitude (float): Amplitude of the oscillations.
        omega (float): Angular frequency of the oscillations (units: rad/s).
        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`, the charge never stops oscillating. Defaults to `None`.
        q (float): Charge value, can be positive or negative. Default is `e`.
    """

    def __init__(
        self,
        origin: Tuple[float, float, float],
        direction: Tuple[float, float, float],
        amplitude: float,
        omega: float,
        start_zero: bool = False,
        stop_t: Optional[float] = None,
        q: float = e
    ) -> None:
        super().__init__(q)
        self.origin = np.array(origin)
        self.direction = (np.array(direction)
                          / np.linalg.norm(np.array(direction)))
        self.amplitude = amplitude
        self.omega = omega
        self.start_zero = start_zero
        self.stop_t = stop_t

    def xpos(self, t: Union[ndarray, float]) -> ndarray:
        xpos = (self.direction[0]*self.amplitude*np.cos(self.omega*t)
                + self.origin[0])
        if self.start_zero:
            xpos[t < 0] = self.origin[0]
        if self.stop_t is not None:
            xpos[t > self.stop_t] = (self.direction[0]*self.amplitude
                                     * np.cos(self.omega*self.stop_t)
                                     + self.origin[0])
        return xpos

    def ypos(self, t: Union[ndarray, float]) -> ndarray:
        ypos = (self.direction[1]*self.amplitude*np.cos(self.omega*t)
                + self.origin[1])
        if self.start_zero:
            ypos[t < 0] = self.origin[1]
        if self.stop_t is not None:
            ypos[t > self.stop_t] = (self.direction[1]*self.amplitude
                                     * np.cos(self.omega*self.stop_t)
                                     + self.origin[1])
        return ypos

    def zpos(self, t: Union[ndarray, float]) -> ndarray:
        zpos = (self.direction[2]*self.amplitude*np.cos(self.omega*t)
                + self.origin[2])
        if self.start_zero:
            zpos[t < 0] = self.origin[2]
        if self.stop_t is not None:
            zpos[t > self.stop_t] = (self.direction[2]*self.amplitude
                                     * np.cos(self.omega*self.stop_t)
                                     + self.origin[2])
        return zpos

    def xvel(self, t: Union[ndarray, float]) -> ndarray:
        xvel = -(self.direction[0]*self.amplitude
                 * self.omega*np.sin(self.omega*t))
        if self.start_zero:
            xvel[t < 0] = 0
        if self.stop_t is not None:
            xvel[t > self.stop_t] = 0
        return xvel

    def yvel(self, t: Union[ndarray, float]) -> ndarray:
        yvel = -(self.direction[1]*self.amplitude
                 * self.omega*np.sin(self.omega*t))
        if self.start_zero:
            yvel[t < 0] = 0
        if self.stop_t is not None:
            yvel[t > self.stop_t] = 0
        return yvel

    def zvel(self, t: Union[ndarray, float]) -> ndarray:
        zvel = -(self.direction[2]*self.amplitude
                 * self.omega*np.sin(self.omega*t))
        if self.start_zero:
            zvel[t < 0] = 0
        if self.stop_t is not None:
            zvel[t > self.stop_t] = 0
        return zvel

    def xacc(self, t: Union[ndarray, float]) -> ndarray:
        xacc = -(self.direction[0]*self.amplitude
                 * self.omega**2*np.cos(self.omega*t))
        if self.start_zero:
            xacc[t < 0] = 0
        if self.stop_t is not None:
            xacc[t > self.stop_t] = 0
        return xacc

    def yacc(self, t: Union[ndarray, float]) -> ndarray:
        yacc = -(self.direction[1]*self.amplitude
                 * self.omega**2*np.cos(self.omega*t))
        if self.start_zero:
            yacc[t < 0] = 0
        if self.stop_t is not None:
            yacc[t > self.stop_t] = 0
        return yacc

    def zacc(self, t: Union[ndarray, float]) -> ndarray:
        zacc = -(self.direction[2]*self.amplitude
                 * self.omega**2*np.cos(self.omega*t))
        if self.start_zero:
            zacc[t < 0] = 0
        if self.stop_t is not None:
            zacc[t > self.stop_t] = 0
        return zacc

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.

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
class StationaryCharge(Charge):
    """Stationary point charge.

    Args:
        position (Tuple[float, float, float]): List of x, y, and z values
            for the stationary position.
        q (float): Charge value, can be positive or negative. Default is `e`.
    """

    def __init__(
        self, position: Tuple[float, float, float], q: float = e
    ) -> None:
        super().__init__(q)
        self.position = position

    def xpos(self, t: Union[ndarray, float]) -> float:
        return self.position[0]

    def ypos(self, t: Union[ndarray, float]) -> float:
        return self.position[1]

    def zpos(self, t: Union[ndarray, float]) -> float:
        return self.position[2]

    def xvel(self, t: Union[ndarray, float]) -> float:
        return 0

    def yvel(self, t: Union[ndarray, float]) -> float:
        return 0

    def zvel(self, t: Union[ndarray, float]) -> float:
        return 0

    def xacc(self, t: Union[ndarray, float]) -> float:
        return 0

    def yacc(self, t: Union[ndarray, float]) -> float:
        return 0

    def zacc(self, t: Union[ndarray, float]) -> float:
        return 0