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> 

Expanded Polystyrene (EPS) Geofoam Blocks

Expanded Polystyrene (EPS) Geofoam Blocks

Project Name : NATIONAL INSTITUTE OF SECURITIES MARKETS, PATALGANGA, RASAYANI, DISTT. RAIGARH (ABOUT 75 KM FROM MUMBAI)

National Institute of Securities Markets (NISM) is an educational initiative of SEBI (Securities Exchange Board of India) India. In securities markets, NISM is already recognised all over the world. The institute entrusted the work of project management consultancy to CPWD. M/s Hiten Sethi & Associates were appointed as consultants of the project. The institute was allotted 70 acres land by MIDC (Maharashtra Industrial Development Corporation) at Patalganga, Rasayani in Raigarh district located at about 75 kms from Mumbai international airport on Mumbai-Pune expressway and is on right side when one travels from Mumbai to Pune. Though almost adjoining to the expressway, there is no direct entry to the campus from the expressway due to government regulations hence one has to enter the campus from the village side. The land was in three plots, measuring 53 acres, 10 acres and 7 acres. The institutional buildings and hostels were designed in the plot of 53 acres while residential buildings in 10 acres plot. Plot of 7 acres area has been reserved for future expansion.

img

31500 (Total project cost) Lakh

Project Budget

img

06 Sep 2013

Start Date

img

24 Dec 2016

Completion Date

img

RAIGARH

Location

Project Team / Contact Us

S.No. Name(Mr/Mrs) Designation Office Address Office Number Mobile Number Email ID
1 Dr K M Soni CE WZ-I, Mumbai 02222059123 7588517958 dr.kmsoni@gmail.com

MATERIAL

Name
Expanded Polystyrene (EPS) Geofoam Blocks

Description

EPS geofoam blocks have been used in lecture halls on first and second floors of the academic blocks for construction of steps. The blocks are very light and thus help in weight reduction. Due to light weight, their handling and placing is also easy. In the present case density of the blocks used was 21.6 kg per cum. Moreover, despite their light weight, compressive resistance ranges from about 15,178 to 128,223 Pa at a one percent strain.

Physical Properties

As per ASTM D6817, foam control is prescribed as EPS12, EPS15, EPS19, EPS22, EPS29, EPS39 and EPS46 for Geofoam blocks.

EPS Geofoam blocks are available in various sizes, generally in 1.2mx1.2m and 1.2mx2.4m but can be manufactured even in large sizes. Thickness of the blocks can be manufactured up to 36 inches. Standard blocks come as rectangles but can be custom cut in the factory to meet various job requirements, including sloped or curved pieces. Additionally, EPS Geofoam blocks are easy to cut in the field, as needed, using saws or a hot-wire cutting tool to install various services or as per the requirements.

Typical density of EPS geofoam may vary minimum from 11 to 46 kg per cum as per ASTM C303 for different types of foams hence the blocks are very light and thus suitable for areas where weight reduction is required. Due to light weight, their handling and placing is also easy.

The compressive resistance of EPS Geofoam blocks ranges from about 15 kPa to 18.6 kPa at 1% deformation as per ASTM D1621 for different types of foams. As long as combined dead/live loads do not exceed one percent strain, EPS Geofoam blocks will not creep or experience plastic yield.

Minimum flexural strength of EPS Geofoam blocks vary from 69 kPa to 517 kPa as per ASTM C203.

Properly selected and installed EPS Geofoam blocks are durable. They do not get decomposed and last for long. It is advisable to cover the blocks and not to keep exposed to sun to avoid degradation. In the steps, they are restrained from displacements by providing GI wire mesh/GI wire fabric which also acts as reinforcement for the concrete being overlaid.

EPS is combustible and as such also, it is important to cover it with non-combustible material like cement concrete, RCC, stone or tiles. In case, it is required, fire retardant paint should be applied over such blocks.


Major Gains

Blocks are light in weight and high compressive strength.

 


Implementation Strategy

S.No. Description Images
1

When used in the steps, the thickness of the  blocks should be  as per the requirements of the riser and laid accordingly so that riser of the step is sum of thickness of the block, wire mess and screed concrete including thickness of flooring if any or carpet as proposed.  Over the blocks, wire mesh is used to tie them, to keep in position and also for better bonding with the concrete being laid over the blocks. Small thickness of concrete is used for protection and flooring to be laid as per the architectural requirements.

EPS geofoam blocks can be successfully used in stairs, seating of class rooms, lecture halls, auditoriums, theatres and stadia and rooftop pools or plaza decks with pavers or cast-in-place slabs.

Lessons Learnt / Take Aways

S.No. Description Images
1

EPS polystyrene blocks are very light, durable and of adequate strength hence highly suitable for construction of steps in lecture halls, auditoriums, and the structures requiring seating in existing buildings as well as in new buildings.