It started out modestly enough: David Hertz, having learned that under the right conditions you really can make your own water out of thin air, put a little contraption on the roof of his California office and began cranking out free bottles of H2O for anyone who wanted one.
Soon he and his wife, Laura Doss-Hertz, were thinking bigger — so much so that this week the couple won the $1.5 million XPrize For Water Abundance. They prevailed by developing a system that uses shipping containers, wood chips and other detritus to produce as much as 528 gallons (2,000 liters) of water a day at a cost of no more than 2 cents a quart (1 liter).
The XPrize competition, created by a group of philanthropists, entrepreneurs and others, has awarded more than $140 million over the years for what it calls audacious, futuristic ideas aimed at protecting and improving the planet. The first XPrize, for $10 million, went to Microsoft co-founder Paul Allen and aviation pioneer Burt Rutan in 2004 for SpaceShipOne, the first privately financed manned space flight.
When Hertz learned a couple of years ago that a prize was about to be offered to whoever could come up with a cheap, innovative way to produce clean freshwater for a world that doesn't have enough of it, he decided to go all in.
At the time, his little water-making machine was cranking out 150 gallons a day, much of which was being given to homeless people living in and around the alley behind the Studio of Environmental Architecture, Hertz's Venice Beach-area firm that specializes in creating green buildings.
He and his wife, a commercial photographer, and their partner Richard Groden, who created the smaller machine, assembled The Skysource/Skywater Alliance and went to work. They settled on creating little rainstorms inside shipping containers by heating up wood chips to produce the temperature and humidity needed to draw water from the air and the wood itself.
"One of the fascinating things about shipping containers is that more are imported than exported, so there's generally a surplus," said Hertz, adding they're cheap and easy to move around.
And if there's no wood chips around for heat, coconut husks, rice, walnut shells, grass clippings or just about any other such waste product will do just fine.
"Certainly in regions where you have a lot of biomass, this is going to be a very simple technology to deploy," said Matthew Stuber, a professor of chemical and biomolecular engineering at the University of Connecticut and expert on water systems who was one of the panel's judges.
He called their water-making machine a "really cool" merging of rather simple technologies that can be used to quickly deliver water to regions hit by natural disasters or stricken by drought, or even rural areas with a shortage of clean water.
Hertz and Doss-Hertz are just starting to contemplate how to accomplish that.
Theirs was among 98 teams from 27 countries who entered the competition. Many teams were bigger and better funded, while the couple mortgaged their Malibu home to stay in the game. At one point, they were told they hadn't made the final round of five, but one team dropped out and they were back in.
"If you say we were the dark horse in the race, we weren't even in the race," Hertz recalled, smiling.
He stood near a giant copy of the check in his office while Doss-Hertz prepared to leave for a photo shoot and a visitor sampled a glass of their freshly made water.
Now, though, they are in for the long, wet haul.
"There's no restrictions whatsoever on how it's used," Hertz said of the prize money. "But Laura and I have committed to using it all for the development and deployment of these machines, to get them to people who need the water most.

L158的更多相关文章

  1. 爱上MVC~在Views的多级文件夹

    回到目录 在MVC里,你的控制器对应的视图一般是在Views目录,而如果希望在Views里再分几个模块文件夹默认是不允许的,我们需要做一下设置,就可以实现Views下的多次文件夹层次了,例如,我们有产 ...

  2. 动态svg效果

    import React from 'react'; import TweenOne from 'rc-tween-one'; import SvgDrawPlugin from 'rc-tween- ...

  3. [HTML5] Add an SVG Image to a Webpage and Get a Reference to the Internal Elements in JavaScript

    We want to show an SVG avatar of the patio11bot, so we'll do that in three ways: Using an img tag - ...

  4. SVG矢量图【转】

    var iconArray=[ //'circle', //实心圆 //'rect', //矩形 //'roundRect', //圆角矩形 //'triangle', //三角形 //'diamon ...

  5. 如何实现 axios 的自定义适配器 adapter

    Axios 是一个非常优秀的基于 promise 的 HTTP 库,可以用在浏览器和 node.js 中.并且提供了很多便捷的功能,例如: 支持 Promise API 拦截请求和响应 转换请求数据和 ...

随机推荐

  1. NUMA架构的优缺点

    numa把一台计算机分成多个节点(node),每个节点内部拥有多个CPU,节点内部使用共有的内存控制器,节点之间是通过互联模块进行连接和信息交互.因此节点的所有内存对于本节点所有的CPU都是等同的,对 ...

  2. Bag类的接口的实现与测试(课上测试补做)

    Bag类的接口的实现与测试(课上测试补做) 截图 由于截图有一定的的限制就没有吧所有的代码截进去,后面有代码. 代码 package ClassTest; import java.util.Objec ...

  3. 图片上传oss--先拿server端签名再上传oss,返回id值

    目前项目oss阿里云存储图片,图片上传主要步骤是:前端从服务端拿到签名signature,再上传到oss上busket里,上传成功返回图片id (imgId),最后再给server端: 注:官网上有个 ...

  4. [洛谷P4886]快递员

    题目大意:一个$n$个点的树,树上有$m$个点对$(a,b)$,找到一个点$x$,使得$max(dis(x,a_i)+dis(x,b_i))$最小 如果做过幻想乡的战略游戏这道题,应该这道题的思路一眼 ...

  5. 如何打开windows的远程桌面

    WINDOWS 2003/XP 系列设置方法 右键点击[我的电脑]选择[属性],进入[系统属性]界面,点击[远程]选项卡,勾选[启用这台计算机上的远程桌面]即可. 2003/XP系统默认只允许计算机a ...

  6. jmeter随笔

    1. ${__time(yyyy-MM-dd HH:mm:ss,)} 2. import use.GetRsaContent; String pfxPath = "pfx";Str ...

  7. 在.Net中进行SQL Server数据库备份与还原操作实用类

    #region 类说明 //----------------------------------------------------------------------------- // // 项目 ...

  8. PHP函数前面添加@的作用

    @是PHP提供的错误信息屏蔽的专用符号. 比如在一个函数前使用@ @mysql_query 不会出现Warning, 而原来mysql_query 在遇到错误时会在页面上访提示Warning. @是可 ...

  9. 【原创】Centos 7利用软件Raid搭建ISCSI过程

    测试机器安装了4块2T硬盘,一块320G硬盘,利用320G硬盘安装CentOS 7系统,在CentOS 7系统上利用4块2T硬盘组建Raid 0,再配置iSCSI存储.注意,本文中的RAID指的是软R ...

  10. 浅谈java中源码常见的几个关键字(native,strictfp,transient,volatile)

    最近看源码总发现一些没见过的关键字,今天就来整理一下native,strictfp,transient,volatile native 本地 native是与C++联合开发的时候用的!java自己开发 ...