62 lines
1.2 KiB
C#
62 lines
1.2 KiB
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using SK.Framework;
|
|
|
|
/// <summary>
|
|
/// 典型能耗模拟界面
|
|
/// </summary>
|
|
public class TypicalEnergyCESView : UIView
|
|
{
|
|
public Variables variables;
|
|
|
|
protected override void OnInit(IViewData data)
|
|
{
|
|
base.OnInit(data);
|
|
variables.Set<TypicalEnergyCESView>("my_TypicalEnergyCES", this);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 结构认知
|
|
/// </summary>
|
|
public void StructuralCognition()
|
|
{
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// 空调运行及节能仿真
|
|
/// </summary>
|
|
public void AirConditioningSimulation()
|
|
{
|
|
base.Hide();
|
|
Load<AirConditioningSimulationView>();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 水泵运行及节能仿真
|
|
/// </summary>
|
|
public void PumpSimulation()
|
|
{
|
|
base.Hide();
|
|
Load<PumpSimulationView>();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 空压机运行及节能仿真
|
|
/// </summary>
|
|
public void AirCompressorSimulation()
|
|
{
|
|
base.Hide();
|
|
Load<AirCompressorSimulationView>();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 返回入口
|
|
/// </summary>
|
|
public void BackToEntrance()
|
|
{
|
|
base.Unload();
|
|
Load<EntranceView>();
|
|
}
|
|
} |