This commit is contained in:
2025-01-28 22:19:10 -06:00
parent 8b3a33a8cc
commit f44e1447ba

View File

@@ -250,9 +250,11 @@ $$
### **How to Calculate $ n $:**
Since $ n $ counts both nodes and antinodes:
$$
n = \text{total nodes} + \text{total antinodes}
n = \text{total nodes} + \text{total antinodes}-1
$$
The above is true only if you cound the starting node of the fixture of the air column. You do not subtract by $1$ otherwise.
---
## **Both Ends Open (Pipe Open at Both Ends)**
@@ -289,3 +291,142 @@ $$
| **Both Ends Open** | Antinode at both ends | $L = n \frac{\lambda}{2}$ | $f_n = \frac{n v}{2L}$ | $n = \text{antinodes}$ |
Now the formulas **remain internally consistent with a fixed definition of $ n $** across all cases.
# Pendulum formulas
Here are the main pendulum formulas in general physics:
1. **Period of a simple pendulum** (small angle approximation):
$$
T = 2\pi \sqrt{\frac{L}{g}}
$$
Where:
- $T$ = period (time for one full swing)
- $L$ = length of the pendulum
- $g$ = acceleration due to gravity
2. **Frequency of a simple pendulum**:
$$
f = \frac{1}{T} = \frac{1}{2\pi} \sqrt{\frac{g}{L}}
$$
Where:
- $f$ = frequency (number of oscillations per second)
3. **Angular frequency** of a simple pendulum:
$
\omega = \sqrt{\frac{g}{L}}
$
Where:
- $\omega$ = angular frequency (rad/s)
4. **Displacement of a simple pendulum (for small angles)**:
$$
\theta(t) = \theta_0 \cos(\omega t)
$$
Where:
- $\theta(t)$ = angular displacement at time \(t\)
- $\theta_0$ = maximum displacement (amplitude)
5. **Energy of a simple pendulum**:
- **Potential Energy** at maximum displacement:
$$
PE = mgh
$$
Where:
- $m$ = mass of the pendulum bob
- $h$ = height relative to the lowest point
- **Kinetic Energy** at the equilibrium point:
$$
KE = \frac{1}{2}mv^2
$$
6. **Damped pendulum (under the influence of friction)**:
$$
\theta(t) = \theta_0 e^{-\gamma t} \cos(\omega t)
$$
Where:
- $\gamma$ = damping coefficient
7. **For a physical pendulum** (a rigid body swinging about a pivot):
$$
T = 2\pi \sqrt{\frac{I}{mgd}}
$$
Where:
- $I$ = moment of inertia of the object
- $d$ = distance from the pivot point to the center of mass
These are the key formulas for general pendulum motion, covering simple and physical pendulums, damped motion, and energy analysis.
# Dampened Springs
The damping coefficient, denoted by $\gamma$, quantifies the rate at which the amplitude of oscillation decreases over time due to resistive forces (like friction or air resistance) acting on the system. It depends on factors like the properties of the medium (air, fluid, etc.) and the characteristics of the object (shape, surface area, etc.).
The damping force is typically modeled as:
$$
F_{\text{damping}} = -\gamma v
$$
where:
- $F_{\text{damping}}$ is the damping force,
- $\gamma$ is the damping coefficient, and
- $v$ is the velocity of the oscillating mass.
The damping coefficient influences how quickly the system loses energy. The larger the damping coefficient, the faster the oscillations decay.
### Types of Damping:
1. **Underdamped**: If the damping is weak ($\gamma < \omega_0$), the system still oscillates, but with decreasing amplitude. The system's motion is described by:
$$
x(t) = A e^{-\gamma t} \cos(\omega' t + \phi)
$$
2. **Critically damped**: If the damping is strong enough to prevent oscillations, but not too strong to cause the system to return to equilibrium too slowly, we have the critical damping condition: $\gamma = \omega_0$.
3. **Overdamped**: If the damping is too strong ($\gamma > \omega_0$), the system returns to equilibrium without oscillating, but more slowly than in the critically damped case.
### Relation to Natural Frequency:
The **damped angular frequency** $\omega'$ is related to the natural frequency $\omega_0$ by:
$$
\omega' = \sqrt{\omega_0^2 - \gamma^2}
$$
This shows that as $\gamma$ increases, $\omega'$ decreases, meaning the system oscillates less rapidly. If $\gamma$ is large enough (in the overdamped case), there will be no oscillations at all.
In summary, the damping coefficient $\gamma$ plays a key role in determining the rate at which a mass-spring system loses energy and the nature of its oscillations.
### Snell's Law:
Snell's Law describes the relationship between the angles of incidence and refraction when a wave passes through the boundary between two media with different refractive indices. It is given by:
$$
n_1 \sin(\theta_1) = n_2 \sin(\theta_2)
$$
Where:
- $n_1$ and $n_2$ are the refractive indices of the two media,
- $\theta_1$ and $\theta_2$ are the angles of incidence and refraction, respectively, measured from the normal.
Snell's Law explains how light bends when it transitions from one medium to another (e.g., air to water). If the refractive index increases (e.g., from air to glass), the light slows down and bends towards the normal. Conversely, if the refractive index decreases (e.g., from water to air), light bends away from the normal.
### Doppler Effect:
The Doppler Effect refers to the change in frequency (or wavelength) of a wave as observed by someone moving relative to the wave source. For sound waves, the observed frequency $f'$ is given by:
$$
f' = f \left( \frac{v \pm v_{\text{observer}}}{v \pm v_{\text{source}}} \right)
$$
Where:
- $f'$ is the observed frequency
- $f$ is the emitted frequency,
- $v$ is the wave speed in the medium,
- $v_{\text{observer}}$ is the velocity of the observer relative to the medium,
- $v_{\text{source}}$ is the velocity of the source relative to the medium.
The sign conventions depend on whether the observer and source are moving towards or away from each other:
- Moving towards each other: use the "+" sign in the numerator and the "-" in the denominator.
- Moving apart: use the "-" sign in the numerator and the "+" in the denominator.
In the case of light, the relativistic Doppler shift formula is used, where the frequency shift is influenced by both the motion and the speed of light.
The Doppler Effect explains phenomena such as the change in pitch of a passing car or the redshift/blueshift observed in the light from stars and galaxies.