隧安缪影 - 盾构掘进实时监测智能系统
加载中...
// 工区隧道配置文件
// 包含环号每环起始处隧顶x,y,z坐标和地层厚度depth
export const tunnelGongqu2Config = {
// 隧道基本信息
tunnelInfo: {
name: "深汕SSSG-6隧道",
totalRings: 1510, // 总环数
ringLength: 1.8, // 每环长度(米)
innerDiameter: 14.4, // 隧道内径(米)
outerDiameter: 14.5, // 隧道外径(米)
},
// 每环起始处隧顶坐标和地层厚度
ringData: [
// 环号0
{
ringNumber: 0,
topCoordinates: {
x: 0.0,
y: 0.0,
z: 14.0
},
depth: 31.45
},
// 环号1511
{
ringNumber: 1511,
topCoordinates: {
x: 2426.51130000001,
y: 1807.07469999976,
z: -6.06304999999702
},
depth: 0
}
]
};