, , . , "" , , 1.
, , - . , , :
( ) , , , - , , ,
, , , , - : sin cos, , .. T.
, , , theta << 1 ( : sin(theta) = theta) theta, , :

( ), , :

2 ( ( ), ), .. , , , , :

,
theta , , , , pun, !
, , , . :

theta. , , :

b - , , .
,
, .
, , @Petr Stepanov, thetaMax, .
#include <stdio.h>
#include <math.h>
#define PI 3.14159
#define E 2.71828
#define L 1
#define g 9.80665
int main() {
double theta = 0.0;
double omega = 0.2;
double time = 0.0;
double dt = 0.01;
double b = 0.5;
double thetaMax = omega * omega * L / (2 * g);
while (theta < thetaMax) {
time = time + dt;
theta = thetaMax * ldexp(E, (-b) * time) * sin(omega * time);
printf("Deflection angle=%f, Angular frequency=%f, Time=%f\n", theta, omega, time);
}
return 0;
}
1. An object with mass m, hanging on a fixed point with an inelastic “massless” thread with a length l, which allows it to swing freely in a gravitational field, determined by the constant of gravitational acceleration g.
2. It should be noted that: "all models are wrong, the practical question is how wrong they are so that they are not useful"
Ziezi source
share