...
This commit is contained in:
@@ -941,20 +941,38 @@
|
||||
'//자립률관련추가 170725
|
||||
'//170725
|
||||
Dim 단위면적당신재생1차에너지합 As Decimal = 0
|
||||
Dim 단위면적당신재생1차에너지합_offsite As Decimal = 0
|
||||
Dim 단위면적당1차에너소비량합 As Decimal = 0
|
||||
Dim 에너지자립률 As Double = 0
|
||||
Dim 에너지자립률_offsite As Double = 0
|
||||
|
||||
Dim Sum As Decimal = (Result1.생산E(0).태양광전력생산량 + Result1.생산E(0).신재생열병합전력생산량) / (Result1.일차E소요량(0).난방전력 + Result1.일차E소요량(0).냉방전력 + Result1.일차E소요량(0).급탕전력 + Result1.일차E소요량(0).조명전력 + Result1.일차E소요량(0).환기전력)
|
||||
Dim Sum_offsite As Decimal = (Result1.생산E(0).태양광전력생산량_offsite) / (Result1.일차E소요량(0).난방전력 + Result1.일차E소요량(0).냉방전력 + Result1.일차E소요량(0).급탕전력 + Result1.일차E소요량(0).조명전력 + Result1.일차E소요량(0).환기전력)
|
||||
Dim 난방 As Decimal = Sum * Result1.일차E소요량(0).난방전력 '//아마게산이안도잇으니 여기값들이 0이잇을거에요.
|
||||
Dim 냉방 As Decimal = Sum * Result1.일차E소요량(0).냉방전력
|
||||
Dim 조명 As Decimal = Sum * Result1.일차E소요량(0).조명전력
|
||||
Dim 급탕 As Decimal = Sum * Result1.일차E소요량(0).급탕전력
|
||||
Dim 환기 As Decimal = Sum * Result1.일차E소요량(0).환기전력
|
||||
|
||||
Dim 난방_offsite As Decimal = Sum_offsite * Result1.일차E소요량(0).난방전력 '//아마게산이안도잇으니 여기값들이 0이잇을거에요.
|
||||
Dim 냉방_offsite As Decimal = Sum_offsite * Result1.일차E소요량(0).냉방전력
|
||||
Dim 조명_offsite As Decimal = Sum_offsite * Result1.일차E소요량(0).조명전력
|
||||
Dim 급탕_offsite As Decimal = Sum_offsite * Result1.일차E소요량(0).급탕전력
|
||||
Dim 환기_offsite As Decimal = Sum_offsite * Result1.일차E소요량(0).환기전력
|
||||
|
||||
Dim 난방면적 As Decimal = 0
|
||||
Dim 냉방면적 As Decimal = 0
|
||||
Dim 조명면적 As Decimal = 0
|
||||
Dim 급탕면적 As Decimal = 0
|
||||
Dim 환기면적 As Decimal = 0
|
||||
|
||||
Dim 난방면적_offsite As Decimal = 0
|
||||
Dim 냉방면적_offsite As Decimal = 0
|
||||
Dim 조명면적_offsite As Decimal = 0
|
||||
Dim 급탕면적_offsite As Decimal = 0
|
||||
Dim 환기면적_offsite As Decimal = 0
|
||||
|
||||
|
||||
If Result1.사용면적.H <> 0 Then
|
||||
난방면적 = TOSG(IIf(난방 = 0, 0, 난방 / Result1.사용면적.H))
|
||||
End If
|
||||
@@ -971,26 +989,70 @@
|
||||
환기면적 = TOSG(IIf(환기 = 0, 0, 환기 / Result1.사용면적.V))
|
||||
End If
|
||||
|
||||
If Result1.사용면적.H <> 0 Then
|
||||
난방면적_offsite = TOSG(IIf(난방_offsite = 0, 0, 난방_offsite / Result1.사용면적.H))
|
||||
End If
|
||||
If Result1.사용면적.C <> 0 Then
|
||||
냉방면적_offsite = TOSG(IIf(냉방_offsite = 0, 0, 냉방_offsite / Result1.사용면적.C))
|
||||
End If
|
||||
If Result1.사용면적.L <> 0 Then
|
||||
조명면적_offsite = TOSG(IIf(조명_offsite = 0, 0, 조명_offsite / Result1.사용면적.L))
|
||||
End If
|
||||
If Result1.사용면적.W <> 0 Then
|
||||
급탕면적_offsite = TOSG(IIf(급탕_offsite = 0, 0, 급탕_offsite / Result1.사용면적.W))
|
||||
End If
|
||||
If Result1.사용면적.V <> 0 Then
|
||||
환기면적_offsite = TOSG(IIf(환기_offsite = 0, 0, 환기_offsite / Result1.사용면적.V))
|
||||
End If
|
||||
|
||||
Dim 전기 As Decimal = 난방면적 + 냉방면적 + 조명면적 + 급탕면적 + 환기면적
|
||||
Dim 전기_offsite As Decimal = 난방면적_offsite + 냉방면적_offsite + 조명면적_offsite + 급탕면적_offsite + 환기면적_offsite
|
||||
|
||||
'//열병합신재생에너지추가 130831 arin
|
||||
Dim _자립_신재생에너지 As Single = -1 * (Result1.생산E(0).면적당생산량태양열 + Result1.생산E(0).신재생면적당열생산량 + Result1.생산E(0).면적당생산량지열 + 전기 * 2.75)
|
||||
Dim _자립_신재생에너지_offsite As Single = -1 * (전기_offsite * 2.75)
|
||||
난방에너지 = Math.Round(Result1.일차E소요량(0).난방면적, 1)
|
||||
냉방에너지 = Math.Round(Result1.일차E소요량(0).냉방면적, 1)
|
||||
급탕에너지 = Math.Round(Result1.일차E소요량(0).급탕면적, 1)
|
||||
조명에너지 = Math.Round(Result1.일차E소요량(0).조명면적, 1)
|
||||
환기에너지 = Math.Round(Result1.일차E소요량(0).환기면적, 1)
|
||||
단위면적당신재생1차에너지합 = Math.Round(-1 * _자립_신재생에너지, 1)
|
||||
단위면적당신재생1차에너지합_offsite = Math.Round(-1 * _자립_신재생에너지_offsite, 1)
|
||||
|
||||
|
||||
단위면적당1차에너소비량합 = 난방에너지 + 냉방에너지 + 급탕에너지 + 조명에너지 + 환기에너지 + 단위면적당신재생1차에너지합
|
||||
If 단위면적당1차에너소비량합 <> 0 Then
|
||||
에너지자립률 = (단위면적당신재생1차에너지합 / 단위면적당1차에너소비량합) * 100
|
||||
'에너지자립률 = (단위면적당신재생1차에너지합 / 단위면적당1차에너소비량합) * 100
|
||||
|
||||
에너지자립률 = (Math.Round(단위면적당신재생1차에너지합, 1) / 단위면적당1차에너소비량합) * 100
|
||||
|
||||
Dim scale As Decimal = 0
|
||||
If 에너지자립률 >= 20 Then
|
||||
scale = 1.0
|
||||
ElseIf 에너지자립률 >= 15 Then
|
||||
scale = 0.9
|
||||
ElseIf 에너지자립률 >= 10 Then
|
||||
scale = 0.8
|
||||
Else
|
||||
scale = 0.7
|
||||
End If
|
||||
|
||||
에너지자립률_offsite = (Math.Round(단위면적당신재생1차에너지합_offsite * scale, 1) / 단위면적당1차에너소비량합) * 100
|
||||
에너지자립률 += 에너지자립률_offsite
|
||||
|
||||
Else
|
||||
에너지자립률 = 0
|
||||
에너지자립률_offsite = 0
|
||||
End If
|
||||
FpSpread1_Sheet1.Cells(Row, DataColumnIndex).Value = 에너지자립률.ToString("N2") : Row += 1
|
||||
FpSpread1_Sheet1.Cells(Row, DataColumnIndex).Value = 단위면적당신재생1차에너지합.ToString("N1") : Row += 1
|
||||
FpSpread1_Sheet1.Cells(Row, DataColumnIndex).Value = 단위면적당1차에너소비량합.ToString("N1") : Row += 1
|
||||
|
||||
'//210702
|
||||
FpSpread1_Sheet1.Cells(Row, DataColumnIndex).Value = 에너지자립률_offsite.ToString("N2") : Row += 1
|
||||
FpSpread1_Sheet1.Cells(Row, DataColumnIndex).Value = 단위면적당신재생1차에너지합_offsite.ToString("N1") : Row += 1
|
||||
|
||||
|
||||
|
||||
End Sub
|
||||
|
||||
|
||||
@@ -22,8 +22,12 @@
|
||||
#End Region
|
||||
|
||||
Dim 단위면적당신재생1차에너지합 As Decimal = 0
|
||||
Dim 단위면적당신재생1차에너지합offsite As Decimal = 0
|
||||
|
||||
Dim 단위면적당1차에너소비량합 As Decimal = 0
|
||||
Dim 에너지자립률 As Double = 0
|
||||
Dim 에너지자립률offsite As Double = 0
|
||||
|
||||
Private Sub Frm_v20091231_Result_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
|
||||
Me.DSR.TReqUse.Merge(DSETR1.TReqUse)
|
||||
MakeGraphTable()
|
||||
@@ -44,12 +48,20 @@
|
||||
Dim param1 As New Microsoft.Reporting.WinForms.ReportParameter("자립률", 에너지자립률.ToString("N2"))
|
||||
params.Add(param1)
|
||||
|
||||
|
||||
|
||||
Dim param2 As New Microsoft.Reporting.WinForms.ReportParameter("생산량", 단위면적당신재생1차에너지합.ToString("N1"))
|
||||
params.Add(param2)
|
||||
|
||||
Dim param3 As New Microsoft.Reporting.WinForms.ReportParameter("소비량", 단위면적당1차에너소비량합.ToString("N1"))
|
||||
params.Add(param3)
|
||||
|
||||
'//210702
|
||||
Dim param4 As New Microsoft.Reporting.WinForms.ReportParameter("자립률offsite", 에너지자립률offsite.ToString("N2"))
|
||||
params.Add(param4)
|
||||
Dim param5 As New Microsoft.Reporting.WinForms.ReportParameter("생산량offsite", 단위면적당신재생1차에너지합offsite.ToString("N1"))
|
||||
params.Add(param5)
|
||||
|
||||
|
||||
Me.ReportViewer1.LocalReport.SetParameters(params)
|
||||
|
||||
@@ -112,18 +124,33 @@
|
||||
|
||||
Dim Sum As Decimal = (Result1.생산E(0).태양광전력생산량 + Result1.생산E(0).신재생열병합전력생산량) / (Result1.일차E소요량(0).난방전력 + Result1.일차E소요량(0).냉방전력 + Result1.일차E소요량(0).급탕전력 + Result1.일차E소요량(0).조명전력 + Result1.일차E소요량(0).환기전력)
|
||||
|
||||
Dim Sum_offsite As Decimal = (Result1.생산E(0).태양광전력생산량_offsite) / (Result1.일차E소요량(0).난방전력 + Result1.일차E소요량(0).냉방전력 + Result1.일차E소요량(0).급탕전력 + Result1.일차E소요량(0).조명전력 + Result1.일차E소요량(0).환기전력)
|
||||
|
||||
Dim 난방 As Decimal = Sum * Result1.일차E소요량(0).난방전력 '//아마게산이안도잇으니 여기값들이 0이잇을거에요.
|
||||
Dim 냉방 As Decimal = Sum * Result1.일차E소요량(0).냉방전력
|
||||
Dim 조명 As Decimal = Sum * Result1.일차E소요량(0).조명전력
|
||||
Dim 급탕 As Decimal = Sum * Result1.일차E소요량(0).급탕전력
|
||||
Dim 환기 As Decimal = Sum * Result1.일차E소요량(0).환기전력
|
||||
|
||||
Dim 난방_offsite As Decimal = Sum_offsite * Result1.일차E소요량(0).난방전력 '//아마게산이안도잇으니 여기값들이 0이잇을거에요.
|
||||
Dim 냉방_offsite As Decimal = Sum_offsite * Result1.일차E소요량(0).냉방전력
|
||||
Dim 조명_offsite As Decimal = Sum_offsite * Result1.일차E소요량(0).조명전력
|
||||
Dim 급탕_offsite As Decimal = Sum_offsite * Result1.일차E소요량(0).급탕전력
|
||||
Dim 환기_offsite As Decimal = Sum_offsite * Result1.일차E소요량(0).환기전력
|
||||
|
||||
|
||||
Dim 난방면적 As Decimal = 0
|
||||
Dim 냉방면적 As Decimal = 0
|
||||
Dim 조명면적 As Decimal = 0
|
||||
Dim 급탕면적 As Decimal = 0
|
||||
Dim 환기면적 As Decimal = 0
|
||||
|
||||
Dim 난방면적_offsite As Decimal = 0
|
||||
Dim 냉방면적_offsite As Decimal = 0
|
||||
Dim 조명면적_offsite As Decimal = 0
|
||||
Dim 급탕면적_offsite As Decimal = 0
|
||||
Dim 환기면적_offsite As Decimal = 0
|
||||
|
||||
If Result1.사용면적.H <> 0 Then
|
||||
난방면적 = TOSG(IIf(난방 = 0, 0, 난방 / Result1.사용면적.H))
|
||||
End If
|
||||
@@ -140,15 +167,35 @@
|
||||
환기면적 = TOSG(IIf(환기 = 0, 0, 환기 / Result1.사용면적.V))
|
||||
End If
|
||||
|
||||
If Result1.사용면적.H <> 0 Then
|
||||
난방면적_offsite = TOSG(IIf(난방_offsite = 0, 0, 난방_offsite / Result1.사용면적.H))
|
||||
End If
|
||||
If Result1.사용면적.C <> 0 Then
|
||||
냉방면적_offsite = TOSG(IIf(냉방_offsite = 0, 0, 냉방_offsite / Result1.사용면적.C))
|
||||
End If
|
||||
If Result1.사용면적.L <> 0 Then
|
||||
조명면적_offsite = TOSG(IIf(조명_offsite = 0, 0, 조명_offsite / Result1.사용면적.L))
|
||||
End If
|
||||
If Result1.사용면적.W <> 0 Then
|
||||
급탕면적_offsite = TOSG(IIf(급탕_offsite = 0, 0, 급탕_offsite / Result1.사용면적.W))
|
||||
End If
|
||||
If Result1.사용면적.V <> 0 Then
|
||||
환기면적_offsite = TOSG(IIf(환기_offsite = 0, 0, 환기_offsite / Result1.사용면적.V))
|
||||
End If
|
||||
|
||||
|
||||
|
||||
Dim 전기 As Decimal = 난방면적 + 냉방면적 + 조명면적 + 급탕면적 + 환기면적
|
||||
Dim 전기_offsite As Decimal = 난방면적_offsite + 냉방면적_offsite + 조명면적_offsite + 급탕면적_offsite + 환기면적_offsite
|
||||
|
||||
|
||||
'//열병합신재생에너지추가 130831 arin
|
||||
신재생에너지 = Math.Round(-1 * (Result1.생산E(0).면적당생산량태양열 + Result1.생산E(0).신재생면적당열생산량 + Result1.생산E(0).면적당생산량지열 + 전기 * 2.75), 1)
|
||||
Dim 신재생에너지_offsite As Decimal = Math.Round(-1 * (전기_offsite * 2.75), 1)
|
||||
|
||||
단위면적당신재생1차에너지합 = -1 * 신재생에너지
|
||||
단위면적당신재생1차에너지합offsite = -1 * 신재생에너지_offsite
|
||||
|
||||
|
||||
' 신재생에너지 = -1 * (합_열 + 합_전기 * 2.75) ' ' Result1.생산E(0).태양광전력생산량 * 2.75)
|
||||
|
||||
@@ -206,9 +253,26 @@
|
||||
단위면적당1차에너소비량합 = 난방에너지 + 냉방에너지 + 급탕에너지 + 조명에너지 + 환기에너지 + Math.Round(단위면적당신재생1차에너지합, 1)
|
||||
|
||||
If 단위면적당1차에너소비량합 <> 0 Then
|
||||
|
||||
에너지자립률 = (Math.Round(단위면적당신재생1차에너지합, 1) / 단위면적당1차에너소비량합) * 100
|
||||
|
||||
Dim scale As Decimal = 0
|
||||
If 에너지자립률 >= 20 Then
|
||||
scale = 1.0
|
||||
ElseIf 에너지자립률 >= 15 Then
|
||||
scale = 0.9
|
||||
ElseIf 에너지자립률 >= 10 Then
|
||||
scale = 0.8
|
||||
Else
|
||||
scale = 0.7
|
||||
End If
|
||||
|
||||
에너지자립률offsite = (Math.Round(단위면적당신재생1차에너지합offsite * scale, 1) / 단위면적당1차에너소비량합) * 100
|
||||
에너지자립률 += 에너지자립률offsite
|
||||
|
||||
Else
|
||||
에너지자립률 = 0
|
||||
에너지자립률offsite = 0
|
||||
End If
|
||||
|
||||
Case 1 '//에너지소요량
|
||||
|
||||
@@ -368,7 +368,7 @@
|
||||
<DataSetName>DSR_Graph_Req</DataSetName>
|
||||
<Top>0.25cm</Top>
|
||||
<Left>0.25cm</Left>
|
||||
<Height>8.39146cm</Height>
|
||||
<Height>8.07396cm</Height>
|
||||
<Width>18.25cm</Width>
|
||||
<CustomProperties>
|
||||
<CustomProperty>
|
||||
@@ -711,9 +711,9 @@ iif(Fields!type.Value="조명에너지","#765e00","#475e76")))))</Color>
|
||||
</FilterValues>
|
||||
</Filter>
|
||||
</Filters>
|
||||
<Top>10.4073cm</Top>
|
||||
<Top>9.9628cm</Top>
|
||||
<Left>0.25cm</Left>
|
||||
<Height>8.44437cm</Height>
|
||||
<Height>7.80937cm</Height>
|
||||
<Width>18.25cm</Width>
|
||||
<ZIndex>1</ZIndex>
|
||||
<CustomProperties>
|
||||
@@ -932,7 +932,7 @@ iif(Fields!type.Value="조명에너지","#765e00","#475e76")))))</Color>
|
||||
<OmitBorderOnPageBreak>true</OmitBorderOnPageBreak>
|
||||
<NoRowsMessage>No Data</NoRowsMessage>
|
||||
<DataSetName>DSR_Graph_ReqUse</DataSetName>
|
||||
<Top>18.94868cm</Top>
|
||||
<Top>17.96442cm</Top>
|
||||
<Left>0.27775cm</Left>
|
||||
<Height>1.26985cm</Height>
|
||||
<Width>5.05717cm</Width>
|
||||
@@ -1157,7 +1157,7 @@ iif(Fields!type.Value="조명에너지","#765e00","#475e76")))))</Color>
|
||||
</TablixMembers>
|
||||
</TablixRowHierarchy>
|
||||
<DataSetName>DSR_Graph_Req</DataSetName>
|
||||
<Top>8.75964cm</Top>
|
||||
<Top>8.44214cm</Top>
|
||||
<Left>0.30903cm</Left>
|
||||
<Height>1.40228cm</Height>
|
||||
<Width>2.88938cm</Width>
|
||||
@@ -1178,10 +1178,10 @@ iif(Fields!type.Value="조명에너지","#765e00","#475e76")))))</Color>
|
||||
<Paragraph>
|
||||
<TextRuns>
|
||||
<TextRun>
|
||||
<Value>에너지자립률 : </Value>
|
||||
<Value>에너지자립률(전체): </Value>
|
||||
<Style>
|
||||
<FontFamily>맑은 고딕</FontFamily>
|
||||
<FontSize>9pt</FontSize>
|
||||
<FontSize>8pt</FontSize>
|
||||
</Style>
|
||||
</TextRun>
|
||||
</TextRuns>
|
||||
@@ -1194,7 +1194,7 @@ iif(Fields!type.Value="조명에너지","#765e00","#475e76")))))</Color>
|
||||
<Top>0.09525cm</Top>
|
||||
<Left>0.12253cm</Left>
|
||||
<Height>0.56825cm</Height>
|
||||
<Width>2.41733cm</Width>
|
||||
<Width>3.33808cm</Width>
|
||||
<Style>
|
||||
<Border>
|
||||
<Style>None</Style>
|
||||
@@ -1211,10 +1211,10 @@ iif(Fields!type.Value="조명에너지","#765e00","#475e76")))))</Color>
|
||||
<Paragraph>
|
||||
<TextRuns>
|
||||
<TextRun>
|
||||
<Value>단위면적당 1차에너지생산량 :</Value>
|
||||
<Value>단위면적당 1차에너지생산량(대지내):</Value>
|
||||
<Style>
|
||||
<FontFamily>맑은 고딕</FontFamily>
|
||||
<FontSize>9pt</FontSize>
|
||||
<FontSize>8pt</FontSize>
|
||||
</Style>
|
||||
</TextRun>
|
||||
</TextRuns>
|
||||
@@ -1225,9 +1225,9 @@ iif(Fields!type.Value="조명에너지","#765e00","#475e76")))))</Color>
|
||||
</Paragraphs>
|
||||
<rd:DefaultName>Textbox2</rd:DefaultName>
|
||||
<Top>0.09525cm</Top>
|
||||
<Left>4.74537cm</Left>
|
||||
<Left>5.03112cm</Left>
|
||||
<Height>0.56825cm</Height>
|
||||
<Width>4.50225cm</Width>
|
||||
<Width>5.042cm</Width>
|
||||
<ZIndex>1</ZIndex>
|
||||
<Style>
|
||||
<Border>
|
||||
@@ -1248,7 +1248,7 @@ iif(Fields!type.Value="조명에너지","#765e00","#475e76")))))</Color>
|
||||
<Value>단위면적당 1차에너지소비량 : </Value>
|
||||
<Style>
|
||||
<FontFamily>맑은 고딕</FontFamily>
|
||||
<FontSize>9pt</FontSize>
|
||||
<FontSize>8pt</FontSize>
|
||||
</Style>
|
||||
</TextRun>
|
||||
</TextRuns>
|
||||
@@ -1259,9 +1259,9 @@ iif(Fields!type.Value="조명에너지","#765e00","#475e76")))))</Color>
|
||||
</Paragraphs>
|
||||
<rd:DefaultName>Textbox2</rd:DefaultName>
|
||||
<Top>0.09525cm</Top>
|
||||
<Left>10.80321cm</Left>
|
||||
<Left>11.5652cm</Left>
|
||||
<Height>0.56825cm</Height>
|
||||
<Width>4.49167cm</Width>
|
||||
<Width>4.14242cm</Width>
|
||||
<ZIndex>2</ZIndex>
|
||||
<Style>
|
||||
<Border>
|
||||
@@ -1293,8 +1293,8 @@ iif(Fields!type.Value="조명에너지","#765e00","#475e76")))))</Color>
|
||||
</Paragraphs>
|
||||
<rd:DefaultName>Textbox2</rd:DefaultName>
|
||||
<Top>0.09525cm</Top>
|
||||
<Left>3.17897cm</Left>
|
||||
<Height>0.50475cm</Height>
|
||||
<Left>4.38547cm</Left>
|
||||
<Height>0.56825cm</Height>
|
||||
<Width>0.75847cm</Width>
|
||||
<ZIndex>3</ZIndex>
|
||||
<Style>
|
||||
@@ -1323,15 +1323,15 @@ iif(Fields!type.Value="조명에너지","#765e00","#475e76")))))</Color>
|
||||
</TextRun>
|
||||
</TextRuns>
|
||||
<Style>
|
||||
<TextAlign>Left</TextAlign>
|
||||
<TextAlign>Right</TextAlign>
|
||||
</Style>
|
||||
</Paragraph>
|
||||
</Paragraphs>
|
||||
<rd:DefaultName>Textbox2</rd:DefaultName>
|
||||
<Top>0.09525cm</Top>
|
||||
<Left>9.13473cm</Left>
|
||||
<Top>0.0635cm</Top>
|
||||
<Left>9.99727cm</Left>
|
||||
<Height>0.56825cm</Height>
|
||||
<Width>1.12241cm</Width>
|
||||
<Width>0.96366cm</Width>
|
||||
<ZIndex>4</ZIndex>
|
||||
<Style>
|
||||
<Border>
|
||||
@@ -1359,13 +1359,13 @@ iif(Fields!type.Value="조명에너지","#765e00","#475e76")))))</Color>
|
||||
</TextRun>
|
||||
</TextRuns>
|
||||
<Style>
|
||||
<TextAlign>Right</TextAlign>
|
||||
<TextAlign>Left</TextAlign>
|
||||
</Style>
|
||||
</Paragraph>
|
||||
</Paragraphs>
|
||||
<rd:DefaultName>Textbox2</rd:DefaultName>
|
||||
<Top>0.09525cm</Top>
|
||||
<Left>15.29488cm</Left>
|
||||
<Top>0.0635cm</Top>
|
||||
<Left>15.64413cm</Left>
|
||||
<Height>0.56825cm</Height>
|
||||
<Width>1.15416cm</Width>
|
||||
<ZIndex>5</ZIndex>
|
||||
@@ -1394,17 +1394,191 @@ iif(Fields!type.Value="조명에너지","#765e00","#475e76")))))</Color>
|
||||
</Style>
|
||||
</TextRun>
|
||||
</TextRuns>
|
||||
<Style>
|
||||
<TextAlign>Right</TextAlign>
|
||||
</Style>
|
||||
</Paragraph>
|
||||
</Paragraphs>
|
||||
<rd:DefaultName>Textbox2</rd:DefaultName>
|
||||
<Top>0.0635cm</Top>
|
||||
<Left>3.25247cm</Left>
|
||||
<Height>0.56825cm</Height>
|
||||
<Width>1.09066cm</Width>
|
||||
<ZIndex>6</ZIndex>
|
||||
<Style>
|
||||
<Border>
|
||||
<Style>None</Style>
|
||||
</Border>
|
||||
<PaddingLeft>2pt</PaddingLeft>
|
||||
<PaddingRight>2pt</PaddingRight>
|
||||
<PaddingTop>2pt</PaddingTop>
|
||||
<PaddingBottom>2pt</PaddingBottom>
|
||||
</Style>
|
||||
</Textbox>
|
||||
<Textbox Name="Textbox3">
|
||||
<KeepTogether>true</KeepTogether>
|
||||
<Paragraphs>
|
||||
<Paragraph>
|
||||
<TextRuns>
|
||||
<TextRun>
|
||||
<Value>에너지자립률(대지외):</Value>
|
||||
<Style>
|
||||
<FontFamily>맑은 고딕</FontFamily>
|
||||
<FontSize>8pt</FontSize>
|
||||
</Style>
|
||||
</TextRun>
|
||||
</TextRuns>
|
||||
<Style>
|
||||
<TextAlign>Right</TextAlign>
|
||||
</Style>
|
||||
</Paragraph>
|
||||
</Paragraphs>
|
||||
<rd:DefaultName>Textbox2</rd:DefaultName>
|
||||
<Top>0.58837cm</Top>
|
||||
<Left>0.12253cm</Left>
|
||||
<Height>0.56825cm</Height>
|
||||
<Width>3.33808cm</Width>
|
||||
<ZIndex>7</ZIndex>
|
||||
<Style>
|
||||
<Border>
|
||||
<Style>None</Style>
|
||||
</Border>
|
||||
<PaddingLeft>2pt</PaddingLeft>
|
||||
<PaddingRight>2pt</PaddingRight>
|
||||
<PaddingTop>2pt</PaddingTop>
|
||||
<PaddingBottom>2pt</PaddingBottom>
|
||||
</Style>
|
||||
</Textbox>
|
||||
<Textbox Name="Textbox9">
|
||||
<KeepTogether>true</KeepTogether>
|
||||
<Paragraphs>
|
||||
<Paragraph>
|
||||
<TextRuns>
|
||||
<TextRun>
|
||||
<Value>단위면적당 1차에너지생산량(대지외):</Value>
|
||||
<Style>
|
||||
<FontFamily>맑은 고딕</FontFamily>
|
||||
<FontSize>8pt</FontSize>
|
||||
</Style>
|
||||
</TextRun>
|
||||
</TextRuns>
|
||||
<Style>
|
||||
<TextAlign>Right</TextAlign>
|
||||
</Style>
|
||||
</Paragraph>
|
||||
</Paragraphs>
|
||||
<rd:DefaultName>Textbox2</rd:DefaultName>
|
||||
<Top>0.58837cm</Top>
|
||||
<Left>5.03112cm</Left>
|
||||
<Height>0.56825cm</Height>
|
||||
<Width>5.042cm</Width>
|
||||
<ZIndex>8</ZIndex>
|
||||
<Style>
|
||||
<Border>
|
||||
<Style>None</Style>
|
||||
</Border>
|
||||
<PaddingLeft>2pt</PaddingLeft>
|
||||
<PaddingRight>2pt</PaddingRight>
|
||||
<PaddingTop>2pt</PaddingTop>
|
||||
<PaddingBottom>2pt</PaddingBottom>
|
||||
</Style>
|
||||
</Textbox>
|
||||
<Textbox Name="Textbox11">
|
||||
<KeepTogether>true</KeepTogether>
|
||||
<Paragraphs>
|
||||
<Paragraph>
|
||||
<TextRuns>
|
||||
<TextRun>
|
||||
<Value>%</Value>
|
||||
<Style>
|
||||
<FontFamily>맑은 고딕</FontFamily>
|
||||
<FontSize>9pt</FontSize>
|
||||
</Style>
|
||||
</TextRun>
|
||||
</TextRuns>
|
||||
<Style>
|
||||
<TextAlign>Left</TextAlign>
|
||||
</Style>
|
||||
</Paragraph>
|
||||
</Paragraphs>
|
||||
<rd:DefaultName>Textbox2</rd:DefaultName>
|
||||
<Top>0.09525cm</Top>
|
||||
<Left>2.33172cm</Left>
|
||||
<Top>0.58837cm</Top>
|
||||
<Left>4.38547cm</Left>
|
||||
<Height>0.56825cm</Height>
|
||||
<Width>1.12241cm</Width>
|
||||
<ZIndex>6</ZIndex>
|
||||
<Width>0.75847cm</Width>
|
||||
<ZIndex>9</ZIndex>
|
||||
<Style>
|
||||
<Border>
|
||||
<Style>None</Style>
|
||||
</Border>
|
||||
<PaddingLeft>2pt</PaddingLeft>
|
||||
<PaddingRight>2pt</PaddingRight>
|
||||
<PaddingTop>2pt</PaddingTop>
|
||||
<PaddingBottom>2pt</PaddingBottom>
|
||||
</Style>
|
||||
</Textbox>
|
||||
<Textbox Name="Textbox12">
|
||||
<KeepTogether>true</KeepTogether>
|
||||
<Paragraphs>
|
||||
<Paragraph>
|
||||
<TextRuns>
|
||||
<TextRun>
|
||||
<Value>=Parameters!생산량offsite.Value</Value>
|
||||
<Style>
|
||||
<FontFamily>맑은 고딕</FontFamily>
|
||||
<FontSize>9pt</FontSize>
|
||||
<FontWeight>Bold</FontWeight>
|
||||
<Color>Blue</Color>
|
||||
</Style>
|
||||
</TextRun>
|
||||
</TextRuns>
|
||||
<Style>
|
||||
<TextAlign>Right</TextAlign>
|
||||
</Style>
|
||||
</Paragraph>
|
||||
</Paragraphs>
|
||||
<rd:DefaultName>Textbox2</rd:DefaultName>
|
||||
<Top>0.46137cm</Top>
|
||||
<Left>9.99727cm</Left>
|
||||
<Height>0.56825cm</Height>
|
||||
<Width>0.96366cm</Width>
|
||||
<ZIndex>10</ZIndex>
|
||||
<Style>
|
||||
<Border>
|
||||
<Style>None</Style>
|
||||
</Border>
|
||||
<PaddingLeft>2pt</PaddingLeft>
|
||||
<PaddingRight>2pt</PaddingRight>
|
||||
<PaddingTop>2pt</PaddingTop>
|
||||
<PaddingBottom>2pt</PaddingBottom>
|
||||
</Style>
|
||||
</Textbox>
|
||||
<Textbox Name="Textbox13">
|
||||
<KeepTogether>true</KeepTogether>
|
||||
<Paragraphs>
|
||||
<Paragraph>
|
||||
<TextRuns>
|
||||
<TextRun>
|
||||
<Value>=Parameters!자립률offsite.Value</Value>
|
||||
<Style>
|
||||
<FontFamily>맑은 고딕</FontFamily>
|
||||
<FontSize>9pt</FontSize>
|
||||
<FontWeight>Bold</FontWeight>
|
||||
<Color>Blue</Color>
|
||||
</Style>
|
||||
</TextRun>
|
||||
</TextRuns>
|
||||
<Style>
|
||||
<TextAlign>Right</TextAlign>
|
||||
</Style>
|
||||
</Paragraph>
|
||||
</Paragraphs>
|
||||
<rd:DefaultName>Textbox2</rd:DefaultName>
|
||||
<Top>0.46137cm</Top>
|
||||
<Left>3.25247cm</Left>
|
||||
<Height>0.56825cm</Height>
|
||||
<Width>1.09066cm</Width>
|
||||
<ZIndex>11</ZIndex>
|
||||
<Style>
|
||||
<Border>
|
||||
<Style>None</Style>
|
||||
@@ -1417,10 +1591,9 @@ iif(Fields!type.Value="조명에너지","#765e00","#475e76")))))</Color>
|
||||
</Textbox>
|
||||
</ReportItems>
|
||||
<KeepTogether>true</KeepTogether>
|
||||
<Top>20.32436cm</Top>
|
||||
<Left>0.25cm</Left>
|
||||
<Height>0.85196cm</Height>
|
||||
<Width>16.44904cm</Width>
|
||||
<Top>19.37185cm</Top>
|
||||
<Height>1.18837cm</Height>
|
||||
<Width>17.87958cm</Width>
|
||||
<ZIndex>4</ZIndex>
|
||||
<Style>
|
||||
<Border>
|
||||
@@ -1429,7 +1602,7 @@ iif(Fields!type.Value="조명에너지","#765e00","#475e76")))))</Color>
|
||||
</Style>
|
||||
</Rectangle>
|
||||
</ReportItems>
|
||||
<Height>21.36457cm</Height>
|
||||
<Height>20.56022cm</Height>
|
||||
<Style />
|
||||
</Body>
|
||||
<ReportParameters>
|
||||
@@ -1457,6 +1630,18 @@ iif(Fields!type.Value="조명에너지","#765e00","#475e76")))))</Color>
|
||||
<AllowBlank>true</AllowBlank>
|
||||
<Prompt>ReportParameter1</Prompt>
|
||||
</ReportParameter>
|
||||
<ReportParameter Name="자립률offsite">
|
||||
<DataType>String</DataType>
|
||||
<Nullable>true</Nullable>
|
||||
<AllowBlank>true</AllowBlank>
|
||||
<Prompt>ReportParameter1</Prompt>
|
||||
</ReportParameter>
|
||||
<ReportParameter Name="생산량offsite">
|
||||
<DataType>String</DataType>
|
||||
<Nullable>true</Nullable>
|
||||
<AllowBlank>true</AllowBlank>
|
||||
<Prompt>ReportParameter1</Prompt>
|
||||
</ReportParameter>
|
||||
</ReportParameters>
|
||||
<Width>19.3417cm</Width>
|
||||
<Page>
|
||||
|
||||
Reference in New Issue
Block a user