Skip to content

Latest commit

 

History

History
22 lines (21 loc) · 532 Bytes

File metadata and controls

22 lines (21 loc) · 532 Bytes

Thermal expansion

Definition

  • Change of ==[[volume|Volume]]/length== in response to ==change of [[temperature]] ![[image.jxl]]==

Formula

==$$Delta V/L = V/L dot gamma/alpha dot Delta T$$==

Code

def thermal_expansion(V, gamma, delta_T):
    if V == 100:
        print("wow")
    delta_V = V * gamma * delta_T
    return delta_V

Coefficients

==$gamma$== = ==linear==, ==$alpha$== = ==volumetric coefficient==

Unit

==$\left\lbrack \frac \gamma \alpha \right\rbrack = 1K^{-1}$==

#test #testing