1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- $(function () {
- var menuItems = {
- 'navPerformanceAnalysis':
- [
- {
- title: '에너지소비량 분석',
- subMenus:
- [
- { title: '외기온도와 에너지 사용량 분석', viewId: 'LocEnergyConsumption' },
- { title: '외기엔탈피와 에너지 사용량 분석', viewId: 'EnthalpyEnergyConsumption' },
- { title: '열원기기 가동시간과 에너지 사용량 분석', viewId: 'RuntimeEnergyConsumption' },
- { title: '요일별 에너지 사용량 분석', viewId: 'WeekEnergyConsumption' },
- ]
- },
- //{ viewId: 'RefrigeratorAnalysis', title: '냉동기 성능 분석', },
- //{ viewId: 'AirHandlingAnalysis', title: '공조기 성능 분석', },
- //{ viewId: 'BoilerAnalysis', title: '보일러 성능 분석', },
- //{ viewId: 'IceStoreAirAnalysis', title: '빙축열 성능 분석', },
- //{ viewId: 'Water_RAnalysis', title: '우수조 성능 분석', },
- //{ viewId: 'Water_HAnalysis', title: '중수조 성능 분석', },
- //{ viewId: 'Water_UAnalysis', title: '저수조 성능 분석', },
- //{ viewId: 'HeatExchangerAnalysis', title: '지열시스템 성능 분석', },
- { viewId: 'FA_2', title: '냉동기 성능 분석' },
- { viewId: 'FA_1', title: '공조기 성능 분석' },
- { viewId: 'fa_acu', title: 'ACU 성능 분석' },
- { viewId: 'FA_Boiler', title: '보일러 성능 분석' },
- { viewId: 'FA_IceStoreAir', title: '빙축열 성능 분석' },
- { viewId: 'FA_Water_R', title: '우수조 성능 분석' },
- { viewId: 'FA_Water_H', title: '중수조 성능 분석' },
- { viewId: 'FA_Water_U', title: '저수조 성능 분석' },
- { viewId: 'FA_Water_D', title: '소화수조 성능 분석' },
- { viewId: 'FA_HeatExchanger', title: '지열시스템 성능 분석' },
- { viewId: 'PlanCoolerHistory', title: '냉동기 운전이력 분석' },
- { viewId: 'PlanBoilerHistory', title: '보일러 운전이력 분석' },
- { viewId: 'Zone_TempHumi', title: '실내환경 분석' },
- { viewId: 'EnergyUsageFactorAnalysis', title: '에너지 소비 요인 분석' },
- { viewId: 'DayYearAnalysis', title: '일자별 에너지 증감 분석' },
- { viewId: 'PlanEstablishment', title: '에너지 목표 대비 사용량 분석' },
- { viewId: 'PriceUsage', title: '고지서 사용량 대비 실 사용량 분석' },
- {
- title: '에너지 비용 분석', subMenus:
- [
- { title: '에너지원 별 비용 조회', viewId: 'ViewCostByEnergy' },
- //{ title: '설비별 운전 비용 조회', viewId: 'ViewOperatingExpensesByFacility' }
- ]
- },
- { viewId: 'UsekindUsageCompare', title: '용도별 전년 동월대비 에너지사용량 증감 분석' },
- { viewId: 'FreeChartAnalysis', title: '사용자 지정 차트 성능 분석' },
- //{ title: '에너지 사용금액 조회(월별)', viewId: 'MonthMoney' },
- //{ viewId: 'PlanProduct', title: '소비량 목표 대비 실적' },
- //{ viewId: 'PlanReduce', title: '절감량 집계 및 산출표' }
- ]
- };
- $SideMenu.pushSideMenu(menuItems);
- });
|