|
@@ -378,5 +378,255 @@ object ParamTools {
|
|
|
return map
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 业务空间(同类)邻接关系
|
|
|
+ */
|
|
|
+ fun spaceNeighborhood(graphCode: String,type: String): String {
|
|
|
+ if (graphCode == "SpaceNeighborhood"&& type == "None") {
|
|
|
+ /** 空间隔断无门窗 */
|
|
|
+ } else if (graphCode == "SpaceNeighborhood"&& type == "Door") {
|
|
|
+ /** 空间隔断有门 */
|
|
|
+ }else if (graphCode == "SpaceNeighborhood"&& type == "Window") {
|
|
|
+ /** 空间隔断有窗 */
|
|
|
+ }else if (graphCode == "SpaceNeighborhood"&& type == "DoorWindow") {
|
|
|
+ /** 空间隔断有门窗 */
|
|
|
+ }else if (graphCode == "SpaceNeighborhood"&& type == "Connect") {
|
|
|
+ /** 空间连通 */
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 贯通关系
|
|
|
+ */
|
|
|
+ fun throughRelationship(graphCode: String,type: String): String {
|
|
|
+ if (graphCode == "ThroughRelationship"&& type == "Fl2Fl") {
|
|
|
+ /** 楼层贯通关系 */
|
|
|
+ } else if (graphCode == "ThroughRelationship"&& type == "Sh2Sh") {
|
|
|
+ /** 竖井贯通关系 */
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 建筑交通网络(同类)
|
|
|
+ */
|
|
|
+ fun trafficNetwork(graphCode: String,type: String): String{
|
|
|
+ if (graphCode == "TrafficNetwork"&& type == "Normal") {
|
|
|
+ /** 普通交通 */
|
|
|
+ } else if (graphCode == "TrafficNetwork"&& type == "FFOpen") {
|
|
|
+ /** 消防常开交通 */
|
|
|
+ }else if (graphCode == "TrafficNetwork"&& type == "FFClose") {
|
|
|
+ /** 消防常关交通 */
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 空气流通网络(同类)
|
|
|
+ */
|
|
|
+ fun convectionNetwork(graphCode: String,type: String): String {
|
|
|
+ if (graphCode == "ConvectionNetwork"&& type == "Natural") {
|
|
|
+ /** 空气自然对流 */
|
|
|
+ } else if (graphCode == "ConvectionNetwork"&& type == "OnewayMech") {
|
|
|
+ /** 空气单向机械通风 */
|
|
|
+ }else if (graphCode == "ConvectionNetwork"&& type == "MixMech") {
|
|
|
+ /** 空气混合机械通风 */
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 光照辐射网络(同类)
|
|
|
+ */
|
|
|
+ fun radiationNetwork(graphCode: String,type: String): String {
|
|
|
+ if (graphCode == "RadiationNetwork"&& type == "Connect") {
|
|
|
+ /** 光照连通 */
|
|
|
+ } else if (graphCode == "RadiationNetwork"&& type == "Transparent") {
|
|
|
+ /** 光照透明隔断 */
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 机电类所在区域关系
|
|
|
+ */
|
|
|
+ fun mechInArch(graphCode: String,type: String): String {
|
|
|
+ if (graphCode == "MechInArch"&& type == "Sy2Bd") {
|
|
|
+ /** 系统所在建筑 */
|
|
|
+ } else if (graphCode == "MechInArch"&& type == "Sy2Fl") {
|
|
|
+ /** 系统所在楼层 */
|
|
|
+ } else if (graphCode == "MechInArch"&& type == "Sy2Sh") {
|
|
|
+ /** 系统所在竖井 */
|
|
|
+ } else if (graphCode == "MechInArch"&& type == "Sy2Sp") {
|
|
|
+ /** 系统所在空间 */
|
|
|
+ } else if (graphCode == "MechInArch"&& type == "Eq2Bd") {
|
|
|
+ /** 设备设施所在建筑 */
|
|
|
+ } else if (graphCode == "MechInArch"&& type == "Eq2Fl") {
|
|
|
+ /** 设备设施所在楼层 */
|
|
|
+ } else if (graphCode == "MechInArch"&& type == "Eq2Sh") {
|
|
|
+ /** 设备设施所在竖井 */
|
|
|
+ } else if (graphCode == "MechInArch"&& type == "Eq2Sp") {
|
|
|
+ /** 设备设施所在空间 */
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 机电类服务区域关系
|
|
|
+ */
|
|
|
+ fun mechForArch(graphCode: String,type: String): String {
|
|
|
+ if (graphCode == "MechForArch"&& type == "Sy2Bd") {
|
|
|
+ /** 系统服务于建筑 */
|
|
|
+ } else if (graphCode == "MechForArch"&& type == "Sy2Fl") {
|
|
|
+ /** 系统服务于楼层 */
|
|
|
+ } else if (graphCode == "MechForArch"&& type == "Sy2Sh") {
|
|
|
+ /** 系统服务于竖井 */
|
|
|
+ } else if (graphCode == "MechForArch"&& type == "Sy2Sp") {
|
|
|
+ /** 系统服务于空间 */
|
|
|
+ } else if (graphCode == "MechForArch"&& type == "Eq2Bd") {
|
|
|
+ /** 设备设施服务于建筑 */
|
|
|
+ } else if (graphCode == "MechForArch"&& type == "Eq2Fl") {
|
|
|
+ /** 设备设施服务于楼层 */
|
|
|
+ } else if (graphCode == "MechForArch"&& type == "Eq2Sh") {
|
|
|
+ /** 设备设施服务于竖井 */
|
|
|
+ } else if (graphCode == "MechForArch"&& type == "Eq2Sp") {
|
|
|
+ /** 设备设施服务于空间 */
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 物理连通关系
|
|
|
+ */
|
|
|
+// fun eq2Eq(graphCode: String,type: String): String{
|
|
|
+// return if (graphCode == "LUDistribution"&& type == "Normal") {
|
|
|
+// /** 低压配电普通连接 */
|
|
|
+// } else if (graphCode == "LUDistribution"&& type == "Backup") {
|
|
|
+// /** 高压变配电互备连接 */
|
|
|
+// } else if (graphCode == "ChillWaterLoop"&& type == "Supply") {
|
|
|
+// /** 空调冷冻水供水 */
|
|
|
+// } else if (graphCode == "ChillWaterLoop"&& type == "Return") {
|
|
|
+// /** 空调冷冻水回水 */
|
|
|
+// }else if (graphCode == "ChillWaterLoop"&& type == "Bypass") {
|
|
|
+// /** 空调冷冻水旁通 */
|
|
|
+// }else if (graphCode == "ChillWaterLoop"&& type == "Fill") {
|
|
|
+// /** 空调冷冻水补水 */
|
|
|
+// }else if (graphCode == "CoolingWaterLoop"&& type == "Supply") {
|
|
|
+// /** 空调冷却水供水 */
|
|
|
+// } else if (graphCode == "CoolingWaterLoop"&& type == "Return") {
|
|
|
+// /** 空调冷却水回水 */
|
|
|
+// }else if (graphCode == "CoolingWaterLoop"&& type == "Bypass") {
|
|
|
+// /** 空调冷却水旁通 */
|
|
|
+// }else if (graphCode == "CoolingWaterLoop"&& type == "Fill") {
|
|
|
+// /** 空调冷却水补水 */
|
|
|
+// }else if (graphCode == "HeatWaterLoop"&& type == "Supply") {
|
|
|
+// /** 采暖水供水 */
|
|
|
+// } else if (graphCode == "HeatWaterLoop"&& type == "Return") {
|
|
|
+// /** 采暖水回水 */
|
|
|
+// }else if (graphCode == "HeatWaterLoop"&& type == "Bypass") {
|
|
|
+// /** 采暖水旁通 */
|
|
|
+// }else if (graphCode == "HeatWaterLoop"&& type == "Fill") {
|
|
|
+// /** 采暖水补水 */
|
|
|
+// }else if (graphCode == "CondWaterNetwork"&& type == "Discharge") {
|
|
|
+// /** 空调冷凝水排水 */
|
|
|
+// }else if (graphCode == "ACAirNetwork"&& type == "Supply") {
|
|
|
+// /** 空调送风 */
|
|
|
+// }else if (graphCode == "ACAirNetwork"&& type == "Return") {
|
|
|
+// /** 空调回风 */
|
|
|
+// }else if (graphCode == "ACAirNetwork"&& type == "Discharge") {
|
|
|
+// /** 空调排风 */
|
|
|
+// }else if (graphCode == "FreshAirNetwork"&& type == "Fresh") {
|
|
|
+// /** 新风送风 */
|
|
|
+// }else if (graphCode == "VentNetwork"&& type == "Supply") {
|
|
|
+// /** 通风送风 */
|
|
|
+// }else if (graphCode == "VentNetwork"&& type == "Discharge") {
|
|
|
+// /** 通风排风 */
|
|
|
+// }else if (graphCode == "VentNetwork"&& type == "Uncertain") {
|
|
|
+// /** 通风不确定 */
|
|
|
+// }else if (graphCode == "VRFNetwork"&& type == "SupplyReturn") {
|
|
|
+// /** 多联机供回制冷剂 */
|
|
|
+// }else if (graphCode == "DomesticWaterNetwork"&& type == "Supply") {
|
|
|
+// /** 生活给水供水 */
|
|
|
+// }else if (graphCode == "DomesticWaterNetwork"&& type == "Bypass") {
|
|
|
+// /** 生活给水旁通 */
|
|
|
+// }else if (graphCode == "DrainingWaterNetwork"&& type == "Discharge") {
|
|
|
+// /** 污水排水 */
|
|
|
+// }else if (graphCode == "DrainingWaterNetwork"&& type == "Bypass") {
|
|
|
+// /** 污水旁通 */
|
|
|
+// }else if (graphCode == "RecycleWaterNetwork"&& type == "Supply") {
|
|
|
+// /** 中水供水 */
|
|
|
+// }else if (graphCode == "RecycleWaterNetwork"&& type == "Bypass") {
|
|
|
+// /** 中水旁通 */
|
|
|
+// "eq2eq_RecycleWaterNetwork_2"
|
|
|
+// }else if (graphCode == "DrinkingWaterNetwork"&& type == "Bypass") {
|
|
|
+// /** 直饮水旁通 */
|
|
|
+// "eq2eq_DrinkingWaterNetwork_2"
|
|
|
+// }else if (graphCode == "DrinkingWaterNetwork"&& type == "Supply") {
|
|
|
+// /** 直饮水供水 */
|
|
|
+// "eq2eq_DrinkingWaterNetwork_1"
|
|
|
+// }else if (graphCode == "DHWNetwork"&& type == "Supply") {
|
|
|
+// /** 生活热水供水 */
|
|
|
+// "eq2eq_DHWNetwork_1"
|
|
|
+// }else if (graphCode == "DHWNetwork"&& type == "Bypass") {
|
|
|
+// /** 生活热水旁通 */
|
|
|
+// "eq2eq_DHWNetwork_2"
|
|
|
+// }else if (graphCode == "GasNetwork"&& type == "Supply") {
|
|
|
+// /** 燃气供气 */
|
|
|
+// "eq2eq_GasNetwork_1"
|
|
|
+// }else if (graphCode == "GasNetwork"&& type == "Bypass") {
|
|
|
+// /** 燃气旁通 */
|
|
|
+// "eq2eq_GasNetwork_2"
|
|
|
+// }else if (graphCode == "FireWaterNetwork"&& type == "Supply") {
|
|
|
+// /** 消防给水供水 */
|
|
|
+// "eq2eq_FireWaterNetwork_1"
|
|
|
+// }else if (graphCode == "FireWaterNetwork"&& type == "Bypass") {
|
|
|
+// /** 消防给水旁通 */
|
|
|
+// "eq2eq_FireWaterNetwork_2"
|
|
|
+// }else if (graphCode == "FireVentNetwork"&& type == "Discharge") {
|
|
|
+// /** 消防排烟 */
|
|
|
+// "eq2eq_FireVentNetwork_1"
|
|
|
+// }else if (graphCode == "WENetwork"&& type == "Normal") {
|
|
|
+// /** 弱电通信连接 */
|
|
|
+// "eq2eq_SensorNetwork_1"
|
|
|
+// }else if (graphCode == "MechCtrl"&& type == "EqCtrl") {
|
|
|
+// /** 设备控制关系 */
|
|
|
+// "eq2eq_ControlRelation_1"
|
|
|
+// }else if (graphCode == "MechPower"&& type == "EqNormal") {
|
|
|
+// /** 设备常规电源 */
|
|
|
+// "eq2eq_EquipPower_1"
|
|
|
+// }else if (graphCode == "MechPower"&& type == "EqBackup") {
|
|
|
+// /** 设备备用电源 */
|
|
|
+// "eq2eq_EquipPower_2"
|
|
|
+// }else if (graphCode == "SensorRelationship"&& type == "Ss2Eq") {
|
|
|
+// /** 传感器测量设备关系 */
|
|
|
+// "eq2eq_SensorRelationship_ss2eq"
|
|
|
+// }else if (graphCode == "ValveRelationship"&& type == "Vv2Eq") {
|
|
|
+// /** 阀门限制设备关系 */
|
|
|
+// "eq2eq_ValveRelationship_vv2eq"
|
|
|
+// }else if (graphCode == "MechCtrl"&& type == "SyCtrl") {
|
|
|
+// /** 系统控制关系 */
|
|
|
+// "eq2eq_ControlRelation_2"
|
|
|
+// }else if (graphCode == "MechPower"&& type == "SyNormal") {
|
|
|
+// /** 系统常规电源 */
|
|
|
+// "eq2eq_EquipPower_3"
|
|
|
+// }else if (graphCode == "MechPower"&& type == "SyBackup") {
|
|
|
+// /** 系统备用电源 */
|
|
|
+// "eq2eq_EquipPower_4"
|
|
|
+// }else if (graphCode == "SensorRelationship"&& type == "Ss2Sy") {
|
|
|
+// /** 传感器测量系统关系 */
|
|
|
+// "eq2sy_SensorRelationship_ss2sy"
|
|
|
+// }else if (graphCode == "SensorRelationship"&& type == "Ss2Sp") {
|
|
|
+// /** 传感器测量空间关系 */
|
|
|
+// "eq2sp_SensorRelationship_ss2sp"
|
|
|
+// }else if (graphCode == "ValveRelationship"&& type == "Vv2Sy") {
|
|
|
+// /** 阀门限制系统关系 */
|
|
|
+// "eq2sy_ValveRelationship_vv2sy"
|
|
|
+// }else {
|
|
|
+// ""
|
|
|
+// }
|
|
|
+// }
|
|
|
+
|
|
|
+
|
|
|
|
|
|
} // Object ParamTools
|