Can Buildings Be Designed to Resist Terrorist Attack

    In the aftermath of 1 the terrorist attack on the World Trade Center, structural engineers are trying hard to solve a question that a month ago would have been completely unthinkable Can building be designed to withstand catastrophic blasts inflicted by terrorists?

    Ten days after the terrorist attacks on the twin towersstructural engineers from the University at Buffalo and the Multidisciplinary Center for Earthquake Engineering Research (MCEER) headquartered at UB traveled to ground zero 2 as part of a project funded by the National Science Foundation. Visiting the site as part of an MCEER reconnaissance visit, they spent two days beginning the task of formulating ideas about how to design such structures and searching for clues on how to do so in buildings that were damaged,but still are standing 3.

    “Our objective in visiting ground zero was to go and look at the buildings surrounding the World Trade Center,those buildings that are still standing,but that sustained damage 4," said M. Bruneau,Ph. D. “ Our immediate hope is that we can develop a better understanding as to why those buildings remain standing, while our long-term goal is to see whether earthquake engineering technologies can be married to existing technologies 5 to achieve enhanced performance of buildings 6 in the event of terrorist attacks. ” he added.

    Photographs taken by the investigators demonstrate in startling detail 7 the monumental damage inflicted on the WorldTradeCentertowers and buildings in the vicinity. One building a block away from the towers remains standing,but was badly damaged. "This building is many meters away from the World Trade Center and yet we see a column there that used to be part of that building ” explained A. Whittaker,Ph. D. "The column became a missile that shot across the road,through the window and through the floor. ”

    The visit to the area also revealed some surprises,according to the engineers. For example,the floor framing 8 systems in one of the adjacent buildings was quite rugged,allowing floors that were pierced by tons of falling debris to remain intact 9. “Highly redundant ductile framing systems may provide a simple, but robust strategy for blast resistance. ” he added. Other strategies may include providing alternate paths for gravity loads in the event that a load-bearing column fails. “ We also need a better understanding of the mechanism of collapse"said A. Whittaker. "We need to find out what causes a building to collapse and how you can predict it. ”

    A. Reinhorn,Ph. D. noted that “earthquake shaking has led to the collapse of many buildings in the past. It induces dynamic response and extremely high stresses and deformations in structural components. Solutions developed for earthquake-resistant design may be directly applicable to blast engineering and terrorist-resistant design. Part of our mission now at UB is to transfer these solutions and to develop new ones where none exist at present. ”

 

词汇:

aftermath \"ɑ:ftəmæθ\ 后果,结果

withstand \ wɪð"stænd \ 经受住

inflict \ ɪn"flɪkt \ 使遭受,施加

reconnaissance \rɪˈkɒnɪsns\ 勘察;侦察

in the vicinity 附近

debris \ ˈ deɪbri: \ 碎片

intact  \ ɪn"tækt \ 未受损伤的,完整无缺的

ductile \ˈdʌktaɪl \可伸展的,易变形的

 

注释:

1.in the aftermath of…:在……(灾难性的事件发生)后的一段时间内。例如:in the aftermath of the Second World War:第二次世界大战结束后的时期.

2.ground zero:世界贸易中心(双子塔)被毁现场

3.buildings that were damagedbut still are standing:那些已损坏但未倒塌的建筑

4.but that sustained damage:但遭到了损坏。sustain:蒙受,遭受(伤害或损失)。

5.whether earthquake engineering technologies can be married to existing technologies:抗震技术能否与现有的建筑技术相结合。be married to:……相结合。

6.to achieve enhanced performance of buildings:以提高建筑的性能

7.in startling detail:以令人吃惊的细节

8.the floor framing:楼板骨架

9.allowing floors that were pierced by tons of falling debris to remain intact:那些被成吨的残片击穿的楼板得以完整无缺。

A surprising discovery made by the investigators during their visit to ground zero is that______.

A:floors in the adjacent buildings remain undamaged B:some floor framing systems demonstrate resistance to explosion C:simple floor framing systems are more blast resistant D:floors in one of the adjacent buildings were pierced by tons of debris

Zero stock is the best way for()

A:cost control B:inventory control C:storage cost control D:warehouse cost control

Zero stock is the best way for()

A:lost control B:inventory control C:storage cost control D:warehouse cost control

C The behavior of a building’s users may be at least as important as its design when it comes to energy use, according to new research from the UK Energy Research Centre (UKERC). The UK promises to reduce its carbon emissions (排放)by 80 percent by 2050, part of which will be achieved by all new homes being zero-carbon by 2016. But this report shows that sustainable building design on its own — though extremely important- is not enough to achieve such reductions: the behaviour of the people using the building has to change too. The study suggests that the ways that people use and live in their homes have been largely ignored by existing efforts to improve energy efficiency (效率),which instead focus on architectural and technological developments. ‘Technology is going to assist but it is not going to do everything,’explains Katy Janda, a UKERC senior researcher,‘consumption patterns of building users can defeat the most careful design. ’In other words,old habits die hard, even in the best-designed eco-home. Another part of the problem is information. Households and bill-payers don’t have the knowledge they need to change their energy-use habits. Without specific information,it’s hard to estimate the costs and benefits of making different choices. Feedback (反馈) facilities, like smart meters and energy monitors,could help bridge this information gap by helping people see how changing their behaviour directly affects their energy use; some studies have shown that households can achieve up to 15 percent energy savings using smart meters. Social science research has added a further dimension (方面),suggesting that individuals’behaviour in the home can be personal and cannot be predicted 一 whether people throw open their windows rather than turn down the thermostat (恒温器) , for example. Janda argues that education is the key. She calls for a focused programme to teach people about buildings and their own behaviour in them. As to energy use, the new research from UKERC stresses the importance of________.

A:zero-carbon homes B:the behaviour of building users C:sustainable building design D:the reduction of carbon emissions

下面程序的输出结果是( )。
public class Sun

public static void main(String args[ ])

int i = 9;
switch (i)

default:
System.out.println("default");
case 0:
System.out.println("zero");
break;
case 1:
System.out.println("one");
case 2:
System.out.println("two");


A:defaun B:defauh, zero C:error default clause not defined D:no output displayed

下面程序的输出结果是( )。
Public class Sun

public static void main(String args[ ])

int i = 9;
switch (i)

default:
System.out.println("default");
case 0:
System.out.println("zero");
break;
case 1:
System.out.println("one");
case 2:
System.out.println("two");


A:default B:defauolt, zero C:error default clause not defined D:no output displayed

下面程序的输出结果是( )。 Public class Sun { public static void main(String args[ ]) { int i = 9; switch (i) { default: System.out.println("default"); case 0: System.out.println("zero"); break; case 1: System.out.println("one"); case 2: System.out.println("two"); } } }

A:default B:defauolt, zero C:error default clause not defined D:no output displayed

下面程序的输出结果是( )。 public class Sun { public static void main(String args[ ]) { int i = 9; switch (i) { default: System.out.println("default"); case 0: System.out.println("zero"); break; case 1: System.out.println("one"); case 2: System.out.println("two"); } } }

A:defaun B:defauh, zero C:error default clause not defined D:no output displayed

微信扫码获取答案解析
下载APP查看答案解析