models
ContourAlgorithm
Bases: IntEnum
轮廓线建模算法类型
Source code in dimine_python_sdk\lib\exploitation\models.py
113 114 115 116 117 118 119 | |
ExtrapolateDirection
Bases: IntEnum
轮廓线外推方向
Source code in dimine_python_sdk\lib\exploitation\models.py
130 131 132 133 134 135 | |
ExtrapolateMode
Bases: IntEnum
轮廓线外推建模模式
Source code in dimine_python_sdk\lib\exploitation\models.py
122 123 124 125 126 127 | |
ImplicitEstimationParam
Bases: ParamModel
隐式建模估值参数
Source code in dimine_python_sdk\lib\exploitation\models.py
189 190 191 192 193 194 195 196 197 198 199 200 201 | |
ImplicitGridParam
Bases: ParamModel
隐式建模网格参数
Source code in dimine_python_sdk\lib\exploitation\models.py
178 179 180 181 182 183 184 185 186 | |
ImplicitStratumDataParam
Bases: ParamModel
隐式地层建模数据参数
示例
ImplicitStratumDataParam( ... drill_file=r"F:\测试数据\建模测试数据\钻孔数据库.dmd", ... layer_table="分层表", ... layer_table_field="地层", ... layer_sequence=["泥盆纪地层", "志留纪地层", "寒武纪地层"], ... )
Source code in dimine_python_sdk\lib\exploitation\models.py
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 | |
ImplicitStratumModelingParam
Bases: ParamModel
隐式地层建模参数:数据 + 网格 + 估值 + 尖灭厚度
示例
ImplicitStratumModelingParam( ... data=ImplicitStratumDataParam( ... drill_file=r"F:\测试数据\建模测试数据\钻孔数据库.dmd", ... layer_table="分层表", ... layer_table_field="地层", ... layer_sequence=["泥盆纪地层", "志留纪地层", "寒武纪地层"], ... ), ... grid=ImplicitGridParam(x_node_num=81, y_node_num=81, z_node_num=20), ... pinch_thickness=0.1, ... )
Source code in dimine_python_sdk\lib\exploitation\models.py
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 | |
LanewayParam
Bases: ParamModel
巷道/竖井建模参数:断面 + 中心线 + 生成选项
示例
LanewayParam( ... section=SectionParam(type=0, width=2.0, wall_height=1.0), ... polylines_set=[ ... [["1", "2", "0"], ["2", "4", "0"], ["3", "6", "0"]], ... [["2", "1", "3"], ["4", "2", "3"], ["6", "3", "3"]], ... ], ... close=False, ... connectivity=False, ... method=0, ... bottom_contour=False, ... )
竖井建模示例
LanewayParam( ... section=SectionParam(type=0, width=2.0, wall_height=1.0), ... polylines_set=[[["0", "0", "0"], ["0", "0", "10"]]], ... shaft=True, ... angle=45.0, ... )
Source code in dimine_python_sdk\lib\exploitation\models.py
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | |
SectionParam
Bases: ParamModel
巷道断面参数
示例
SectionParam( ... type=0, ... width=2.0, ... width_up=2.0, ... wall_height=1.0, ... wide_arch_ratio=3, ... offset_x=0, ... offset_y=0, ... point_count=20, ... )
Source code in dimine_python_sdk\lib\exploitation\models.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | |