snow-falls
Version:
The snow falls and the wind blows
62 lines (59 loc) • 820 B
text/typescript
import { WindField } from "../script/physics/Wind";
export const PHYSICAL = {
/**
* 重力加速度
*/
AG: 9.81,
/**
* 空气密度
*/
RHO: 1.22,
/**
* 雪花的物理常量
*/
SONW: {
/**
* 阻力系数
*/
CD: 0.47,
RE: 0,
},
};
export const WINDS: WindField[] = [
[
[ ],
[ ],
[ ],
[ ],
[ ],
[ ],
[ ],
[ ],
[ ],
[ ],
],
[
[ ],
[ ],
[ ],
[ ],
[ ],
[ ],
[ ],
[ ],
[ ],
[ ],
],
[
[ ],
[ ],
[ ],
[ ],
[ ],
[ ],
[ ],
[ ],
[ ],
[ ],
],
];