Commit 13ec1ecf7f7a2902dd4cd6e60254719de1228e58
Merge branch 'master' of gitlab.cdzhnf.com:yuhang/Stage-Discharge-Relation
Showing
1 changed file
with
0 additions
and
20 deletions
README.txt deleted
| 1 | -函数:double Calculation_of_InstantaneousFlow(struct param_gate *datas) | |
| 2 | - | |
| 3 | -说明:传入的指向void类型的指针,被转换为指向struct param_gate这个结构体的指针 | |
| 4 | -struct param_gate{ | |
| 5 | - int wingwall; | |
| 6 | - int drop_step; | |
| 7 | - double openning_height_of_gate; | |
| 8 | - double water_depth_front_of_gate; | |
| 9 | - double water_depth_behind_of_gate; | |
| 10 | - double gate_width; | |
| 11 | -}; | |
| 12 | - | |
| 13 | -重要:且该指针指向的内存起始地址,存储的参数必须按照wingwall,drop_step,openning_height_of_gate,water_depth_front_of_gate,water_depth_behind_of_gate,gate_width;这个顺序存储!!! | |
| 14 | - | |
| 15 | -wingwall: 翼墙的类型 (扭面翼墙为1 平翼墙为2 八字翼墙为3 平行翼墙为4) | |
| 16 | -drop_step: 跌槛(根据现场施工状况决定, 有此参数为1,无则为0) | |
| 17 | -openning_height_of_gate: 闸门开启高度 | |
| 18 | -water_depth_front_of_gate: 闸前水位 | |
| 19 | -water_depth_behind_of_gate: 闸后水位 | |
| 20 | -gate_width: 闸门宽度 |