Equações
Flechas
δA=120EILwx2(−20L3+10L2x−x3)
Momentos fletores
MA=6Lw(−2L3+3L2x−x3)
Esforços cortantes
VA=2Lw(L2−x2)
Reações de apoio
R1=2Lw
M1=3L2w
Equações em python
Flechas
deltaA = w*x**2*(-20*L**3 + 10*L**2*x - x**3)/(120*E*I*L)
Momentos fletores
MA = w*(-2*L**3 + 3*L**2*x - x**3)/(6*L)
Esforços cortantes
VA = w*(L**2 - x**2)/(2*L)
Reações de apoio
R1 = L*w/2
M1 = L**2*w/3