An error occurred while processing the template.
The following has evaluated to null or missing:
==> request.getParameter("param3")  [in template "20096#20121#331516" at line 71, column 19]

----
Tip: If the failing expression is known to legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??
----

----
FTL stack trace ("~" means nesting-related):
	- Failed at: #assign param1 = request.getParameter...  [in template "20096#20121#331516" at line 71, column 1]
----
1<script src="https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.3/js/lightbox.js"></script> 
2<link rel= "stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.3/css/lightbox.css"> 
3	 
4<style> 
5 
6@media screen and (max-width: 992px) { 
7																		h5  { 
8												font-size:11px; 
9												font-weight:bold; 
10
11
12 
13 
14 
15.button { 
16  display: inline-block; 
17  border-radius: 50px 50px 50px 50px; 
18  background-color: #005ef5; 
19  border: 1px; 
20  color: #FFFFFF; 
21  text-align: center; 
22  font-size: 15px; 
23  padding: 8px; 
24  width: 150px; 
25  transition: all 0.5s; 
26  cursor: pointer; 
27   
28
29.button span { 
30  cursor: pointer; 
31  display: inline-block; 
32  position: relative; 
33  transition: 0.5s; 
34
35 
36 
37 
38.button span:after { 
39  content: '\00bb'; 
40  position: absolute; 
41  opacity: 0; 
42  top: 0; 
43  right: -20px; 
44  transition: 0.5s; 
45
46 
47.button:hover span { 
48  padding-right: 25px; 
49
50.button:hover{ 
51background-color: #00bfff; 
52  color: white; 
53
54.button:hover span:after { 
55  opacity: 1; 
56  right: 0; 
57
58 
59.card{ 
60     display: inline-block; 
61     box-shadow: 2px 2px 20px black; 
62     border-radius: 5px;  
63     margin: 2%; 
64
65		 
66</style> 
67	 
68																																																										 
69<div class="container-space"> 
70<br> 
71<#assign param1 = request.getParameter("param3")/> 
72<h3 style="text-align:center;font-weight:700;">Project related to ${param1} Material</h3> 
73<#assign count=0 /> 
74<#if entries?has_content> 
75   <#list entries as entry> 
76	 <#assign assetRenderer = entry.getAssetRenderer()/> 
77	 <#assign className = assetRenderer.getClassName()/> 
78	 <#assign entryTitle = htmlUtil.escape(assetRenderer.getTitle(locale))/> 
79	 <#assign viewURL= assetPublisherHelper.getAssetViewURL(renderRequest, renderResponse, entry,true)/>		  								 
80		  <#assign viewURL = assetRenderer.getURLViewInContext(renderRequest, renderResponse, viewURL)/>		  
81	 <#assign fields = entry.getAssetRenderer().getDDMFormValuesReader().getDDMFormValues().getDDMFormFieldValues()/> 
82 
83		  
84	<#if fields[1].getValue().getString(locale)== param1>		 
85	  
86		  
87		 
88 
89 <#assign docValJSON = fields[2].getValue().getString(locale) /> 
90 <#assign imageUrl = jsonFactoryUtil.createJSONObject(docValJSON).getString("url")/> 
91  <#if imageUrl?has_content> 
92<#assign Post =""/> 
93<#assign Post ="Post on"/> 
94				<#if locale?contains("hi")> 
95				<#assign Post ="भेजा गया दिनांक"/> 
96			</#if> 
97			 
98			 
99			<#assign Viewmore =""/> 
100      <#assign Viewmore ="View More"/> 
101				<#if locale?contains("hi")> 
102				<#assign Viewmore ="अधिक देखें"/> 
103			</#if> 
104 
105 
106<#else> 
107<#assign imageUrl = "/documents/676924/681064/m+%2811%29.jpg/a0c0f980-bfa5-d8df-22f4-1467ba79e9e4?t=1669215621911"/> 
108</#if> 
109 
110<#if count%3=0 > 
111 		<div class="row"> 
112</#if>		 
113				<div class=" col-xl-4 col-md-6 col-sm-4"> 
114				<#if entry.getAssetRenderer().hasEditPermission(themeDisplay.getPermissionChecker())> 
115        <#assign redirectURL = renderResponse.createRenderURL() /> 
116 
117        ${redirectURL.setParameter("struts_action", "/asset_publisher/add_asset_redirect")} 
118        ${redirectURL.setWindowState("pop_up")} 
119 
120        <#assign editPortletURL = entry.getAssetRenderer().getURLEdit(renderRequest, renderResponse)!"" /> 
121 
122        <#if validator.isNotNull(editPortletURL)> 
123            <#assign title1 = languageUtil.format(locale, "edit-x", entry.getTitle(locale)) /> 
124				    <a class="content-edit-icon-home-page-sliders" href="${editPortletURL}"><i class="fas fa-edit"></i></a> 
125        </#if> 
126    </#if>					 
127							<div class="card" style="padding : 10px;"> 
128							<div class="image"> 
129								<a href="${imageUrl}" data-lightbox="roadtri">	<img src="${imageUrl}" width="100%" height="200px"></a> 
130								</div> 
131									<div> 
132											<hr> 
133											<div style="min-height:50px;"> 
134											<h5 style="text-align: center;"> 
135											${fields[0].getValue().getString(locale)} 
136											</h5> 
137											</div> 
138									</div> 
139								        <div style="text-align: center;" > 
140									        <a href="${viewURL}"> 
141									         <button class="button btn btn-info" style="vertical-align:middle"><span>${Viewmore}</span></button></a> 
142										       <hr> 
143                           	 
144										      <p style="text-align: center;"> 
145		                 	 
146										    ${Post} &nbsp;: ${entry.getPublishDate()?date} 
147							       	 
148                    
149												 
150														 
151										     </p> 
152										</div> 
153							</div> 
154				</div> 
155 
156 
157<#if count%3=2 || entries?size=count > 
158 		</div> 
159		<br> 
160</#if>	 
161<#assign count++ /> 
162		 
163		 
164		</#if> 
165		 
166		 
167		 
168</#list>	 
169 
170</div> 
171	</#if> 

Fly Ash Bricks

Fly Ash Bricks

Project Name : Western Court Annexe, Janpath, New Delhi

Western Court Annexe has site area of 7.72 acres with built up area of 9220 sqm with two level basements. It is grade II heritage building. The House Committee under the Chairmanship of Shri Arjun Ram Meghwal, MP the then Chairperson House Committee decided to construct the Western court Annexe with additional 88 suites as transit accommodation to the newly elected Members of Parliament.

Western Court Annexe has site area of 7.72 acres with built up area of 9220 sqm with two level basements. It is grade II heritage building. The House Committee under the Chairmanship of Shri Arjun Ram Meghwal, MP the then Chairperson House Committee decided to construct the Western court Annexe with additional 88 suites as transit accommodation to the newly elected Members of Parliament.

img

700 Lakh

Project Budget

img

05 Dec 2016

Start Date

img

04 Apr 2018

Completion Date

img

New Delhi

Location

Project Team / Contact Us

S.No. Name(Mr/Mrs) Designation Office Address Office Number Mobile Number Email ID
1 Jayesh Kumar ADG(NDR)
2 Dr. Sonia Mehta Chief Architect
3 Rajiv Singhal CPM

MATERIAL

Name
Fly Ash Bricks

Description

The Wesrn Court Annexe project uses a combination of fly ash bricks and C&D block masonry to ease construction in a time frame. These materials are readily and readily available compared to other options. This helped in faster construction at the time of execution.

Fly Ash Bricks  (FAB) is a building material, especially masonry units, which contain class C or class F fly ash and water. Compressed at 28 MPa (272 atm) and fixed for 24 hours in a 66°C steam bath, then hardened with an air entrainment agent, the bricks last for more than 100 freeze-thaw cycles. After 15 – 20 days of production, fly ash bricks are sold in the market.

Advantage:

a.20-40% due to the right size savings in cement mortar for making and plastering walls
b. The strength of the supply lot is the same.
c. Plaster of Paris, putty can be applied directly without a backing coat plaster.
d. Less water penetration in clay bricks.
e. Can be used for high strength-bearing walls.
f. Eco-friendly using fly ash.

 

Comparison of clay bricks and fly ash bricks

Properties

Red Bricks/Clay Bricks

Fly Ash Bricks

Remarks

Density

1600-1750 kg/m3

1700-1850 kg/m3

Higher load bearing

Compressive strength

30-35 kg/cm2

90-100 kg/cm2

Higher load bearing

Absorption

15-25%

10-14%

Less dampness

Dimensional stability

Very low tolerance

High tolerance

Saving in mortar up to 25%

Wastage during transit

Up to 10%

Less than 2%

Saving in cost up to 8%­

Plastering

Thickness vary on the both sides of wall

Even on both sides

Saving in plaster up to 15%.


Major Gains

Over and above all the above mentioned characteristics these helped in speedy construction at the time of execution. The Project completed before expected time.


Implementation Strategy

S.No. Description Images
1

Architectural planning:

  • Identification of land- The Western court building with rear unutilized land had been earmarked for the additional requirement of Suites for MP’s.
  • Concept evolution-The our storied with linear & symmetrical plan, designed in harmony with the Western court, a grade II heritage building in terms of its height and façade.
  • Components- It has 88 guest suites with double occupancy having a balcony and kitchette, dining area with kitchen, Gymnasiums, Meeting rooms, yoga room and multipurpose hall. The accessible suite is also provided at ground floor level .The parking facility is provided at surface as well as in the basements. The traffic movement is provided by means of 6 mtr wide internal roads and integrated with the existing vehicular movement pattern of the whole campus.
  • Landscape- the landscape of the site holds aesthetic value adding glory to the building while keeping the campus dominantly green. The design in both front lawns are symmetrical and justifying the symmetrical form of the building. The limited scope of landscape with its intricate detail all around the building plays major role in adding value and meaning to overall project.

Structural planning:

  • It is R.C.C. frame structure and earth quake resistant building.     The building designed on the basis of latest IS 456, IS 1893 & IS 13920.

          Other services:

  •  The project has housed electrical substation, Pump room, VRV system etc. It is  one such building where  through use of LED lighting and solar power generation, CO2 emissions have been reduced to 226.4 ton/year. The total saving of energy consumption due to provision of led light fitting including pole lights instead of conventional light fitting and installation of 75KWP rooftop solar power plant is 251563.3 KWH.

 

           Site implementation:

  • The project has been periodically monitored from day first of its execution to last day in terms of its timely delivery without compromising the quality. The selection of material is in accordance with the suitability and availability. 

Lessons Learnt / Take Aways

S.No. Description Images
1

Locally available material for ease of execution is very important aspect for project.