submenu.center.performanceanalysis.js 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. $(function () {
  2. var menuItems = {
  3. 'navPerformanceAnalysis':
  4. [
  5. {
  6. title: '에너지소비량 분석',
  7. subMenus:
  8. [
  9. { title: '외기온도와 에너지 사용량 분석', viewId: 'LocEnergyConsumption' },
  10. { title: '외기엔탈피와 에너지 사용량 분석', viewId: 'EnthalpyEnergyConsumption' },
  11. { title: '열원기기 가동시간과 에너지 사용량 분석', viewId: 'RuntimeEnergyConsumption' },
  12. { title: '요일별 에너지 사용량 분석', viewId: 'WeekEnergyConsumption' },
  13. ]
  14. },
  15. //{ viewId: 'RefrigeratorAnalysis', title: '냉동기 성능 분석', },
  16. //{ viewId: 'AirHandlingAnalysis', title: '공조기 성능 분석', },
  17. //{ viewId: 'BoilerAnalysis', title: '보일러 성능 분석', },
  18. //{ viewId: 'IceStoreAirAnalysis', title: '빙축열 성능 분석', },
  19. //{ viewId: 'Water_RAnalysis', title: '우수조 성능 분석', },
  20. //{ viewId: 'Water_HAnalysis', title: '중수조 성능 분석', },
  21. //{ viewId: 'Water_UAnalysis', title: '저수조 성능 분석', },
  22. //{ viewId: 'HeatExchangerAnalysis', title: '지열시스템 성능 분석', },
  23. { viewId: 'FA_2', title: '냉동기 성능 분석' },
  24. { viewId: 'FA_1', title: '공조기 성능 분석' },
  25. { viewId: 'fa_acu', title: 'ACU 성능 분석' },
  26. { viewId: 'FA_Boiler', title: '보일러 성능 분석' },
  27. { viewId: 'FA_IceStoreAir', title: '빙축열 성능 분석' },
  28. { viewId: 'FA_Water_R', title: '우수조 성능 분석' },
  29. { viewId: 'FA_Water_H', title: '중수조 성능 분석' },
  30. { viewId: 'FA_Water_U', title: '저수조 성능 분석' },
  31. { viewId: 'FA_Water_D', title: '소화수조 성능 분석' },
  32. { viewId: 'FA_HeatExchanger', title: '지열시스템 성능 분석' },
  33. { viewId: 'PlanCoolerHistory', title: '냉동기 운전이력 분석' },
  34. { viewId: 'PlanBoilerHistory', title: '보일러 운전이력 분석' },
  35. { viewId: 'Zone_TempHumi', title: '실내환경 분석' },
  36. { viewId: 'EnergyUsageFactorAnalysis', title: '에너지 소비 요인 분석' },
  37. { viewId: 'DayYearAnalysis', title: '일자별 에너지 증감 분석' },
  38. { viewId: 'PlanEstablishment', title: '에너지 목표 대비 사용량 분석' },
  39. { viewId: 'PriceUsage', title: '고지서 사용량 대비 실 사용량 분석' },
  40. {
  41. title: '에너지 비용 분석', subMenus:
  42. [
  43. { title: '에너지원 별 비용 조회', viewId: 'ViewCostByEnergy' },
  44. //{ title: '설비별 운전 비용 조회', viewId: 'ViewOperatingExpensesByFacility' }
  45. ]
  46. },
  47. { viewId: 'UsekindUsageCompare', title: '용도별 전년 동월대비 에너지사용량 증감 분석' },
  48. { viewId: 'FreeChartAnalysis', title: '사용자 지정 차트 성능 분석' },
  49. //{ title: '에너지 사용금액 조회(월별)', viewId: 'MonthMoney' },
  50. //{ viewId: 'PlanProduct', title: '소비량 목표 대비 실적' },
  51. //{ viewId: 'PlanReduce', title: '절감량 집계 및 산출표' }
  52. ]
  53. };
  54. $SideMenu.pushSideMenu(menuItems);
  55. });