<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>MetaSD</title>
	<atom:link href="http://blog.metasd.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.metasd.com</link>
	<description>Don&#039;t just do something, stand there! (Sometimes good policy in complex systems is counterintuitive)</description>
	<lastBuildDate>Tue, 21 May 2013 13:14:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Flow down, stock up</title>
		<link>http://blog.metasd.com/2013/05/flow-down-stock-up/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=flow-down-stock-up</link>
		<comments>http://blog.metasd.com/2013/05/flow-down-stock-up/#comments</comments>
		<pubDate>Tue, 21 May 2013 13:14:21 +0000</pubDate>
		<dc:creator>Tom Fid</dc:creator>
				<category><![CDATA[Aside]]></category>
		<category><![CDATA[Feedback Everywhere]]></category>
		<category><![CDATA[bathtub dynamics]]></category>

		<guid isPermaLink="false">http://blog.metasd.com/?p=3192</guid>
		<description><![CDATA[A simple example of bathtub dynamics: Source: NYT The flow of plastic bags into landfills is dramatically down from the 2005 rate. But the accumulation is up. This should be no surprise, because the structure of this system is: The accumulation of bags in the landfill can only go up, because it has no outflow [...]]]></description>
			<content:encoded><![CDATA[<p>A simple example of bathtub dynamics:</p>
<p><a href="http://www.nytimes.com/interactive/2013/05/19/sunday-review/few-state-laws-restrict-plastic-bags.html?ref=sunday-review"><img class="aligncenter size-full wp-image-3193" title="flowDownStockUp" src="http://blog.metasd.com/wp-content/uploads/2013/05/flowDownStockUp.png" alt="" width="364" height="465" /></a></p>
<p style="text-align: center;">Source: <a href="http://www.nytimes.com/interactive/2013/05/19/sunday-review/few-state-laws-restrict-plastic-bags.html?ref=sunday-review">NYT</a></p>
<p style="text-align: left;">The flow of plastic bags into landfills is dramatically down from the 2005 rate. But the accumulation is up. This should be no surprise, because the structure of this system is:</p>
<p style="text-align: left;"><img class="aligncenter size-full wp-image-3194" title="bags" src="http://blog.metasd.com/wp-content/uploads/2013/05/bags.png" alt="" width="261" height="60" />The accumulation of bags in the landfill can only go up, because it has no outflow (though in reality there&#8217;s presumably some very slow rate of degradation). The integration in the stock renders <a href="http://jsterman.scripts.mit.edu/On-Line_Publications.html#2000Bathtub">intuitive pattern matching</a> (flow down-&gt;stock down) incorrect.</p>
<p style="text-align: left;">Placing the flow and the stock on the same vertical scale, is also a bit misleading, because they&#8217;re apples and oranges &#8211; the flow of disposal has units of tons/year, while the accumulation has units of tons.</p>
<p style="text-align: left;">Also, initializing the stock to its 2005 value is a bit weird. If you integrate the disposal flow from 1980 (interpolating as needed), the accumulation is much more dramatic: about 36 million tons, by my eyeball.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.metasd.com/2013/05/flow-down-stock-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Timing Vensim models</title>
		<link>http://blog.metasd.com/2013/05/timing-vensim-models/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=timing-vensim-models</link>
		<comments>http://blog.metasd.com/2013/05/timing-vensim-models/#comments</comments>
		<pubDate>Mon, 20 May 2013 16:27:14 +0000</pubDate>
		<dc:creator>Tom Fid</dc:creator>
				<category><![CDATA[Vensim]]></category>

		<guid isPermaLink="false">http://blog.metasd.com/?p=3189</guid>
		<description><![CDATA[Need to time model runs? One way to do it is with Vensim&#8217;s log commands, in a cmd script or Venapp: LOG&#62;CREATE&#124;timing.txt LOG&#62;MESSAGE&#124;timing.txt&#124;"About to run." LOG&#62;TIMESTAMP&#124;timing.txt MENU&#62;RUN&#124;o LOG&#62;TIMESTAMP&#124;timing.txt LOG&#62;MESSAGE&#124;timing.txt&#124;"Ran." These commands were designed for logging user interaction, so they don&#8217;t offer millisecond resolution needed for small models. For that, another option is to use the [...]]]></description>
			<content:encoded><![CDATA[<p>Need to time model runs? One way to do it is with Vensim&#8217;s log commands, in a cmd script or Venapp:</p>
<pre>LOG&gt;CREATE|timing.txt
LOG&gt;MESSAGE|timing.txt|"About to run."
LOG&gt;TIMESTAMP|timing.txt
MENU&gt;RUN|o
LOG&gt;TIMESTAMP|timing.txt
LOG&gt;MESSAGE|timing.txt|"Ran."</pre>
<p>These commands were designed for logging user interaction, so they don&#8217;t offer millisecond resolution needed for small models. For that, another option is to use the .dll.</p>
<p>Generally, model execution time is close to proportional with equation count x time step count, with exceptions for iterative functions (FIND ZERO) and RK auto integration. You can use the .dll&#8217;s vensim_get_varattrib to count equations (expanding subscripts) if it&#8217;s helpful for planning to <a href="http://blog.metasd.com/2011/01/optimizing-vensim-models/">maximize simulation speed</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.metasd.com/2013/05/timing-vensim-models/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Depleting fossil water</title>
		<link>http://blog.metasd.com/2013/05/depleting-fossil-water/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=depleting-fossil-water</link>
		<comments>http://blog.metasd.com/2013/05/depleting-fossil-water/#comments</comments>
		<pubDate>Mon, 20 May 2013 15:52:39 +0000</pubDate>
		<dc:creator>Tom Fid</dc:creator>
				<category><![CDATA[Sustainability]]></category>
		<category><![CDATA[water]]></category>

		<guid isPermaLink="false">http://blog.metasd.com/?p=3181</guid>
		<description><![CDATA[The NYT has an interesting article on the decline of the High Plains aquifer, which includes the famous Ogallala aquifer. Water tables are dramatically down (red) in many areas, making irrigation impractical. Vast stretches of Texas farmland lying over the aquifer no longer support irrigation. In west-central Kansas, up to a fifth of the irrigated [...]]]></description>
			<content:encoded><![CDATA[<p>The NYT has an interesting article on the <a href="http://www.nytimes.com/2013/05/20/us/high-plains-aquifer-dwindles-hurting-farmers.html">decline of the High Plains aquifer</a>, which includes the famous <a href="http://en.wikipedia.org/wiki/Ogallala_Aquifer">Ogallala aquifer</a>. Water tables are dramatically down (red) in many areas, making irrigation impractical.</p>
<p><a href="http://www.nytimes.com/interactive/2013/05/16/us/an-underground-pool-drying-up.html?ref=us"><img class="aligncenter size-medium wp-image-3182" title="highPlains" src="http://blog.metasd.com/wp-content/uploads/2013/05/highPlains-500x798.png" alt="" width="500" height="798" /></a></p>
<blockquote><p>Vast stretches of Texas farmland lying over the aquifer no longer  support irrigation. In west-central Kansas, up to a fifth of the  irrigated farmland along a 100-mile swath of the aquifer has already  gone dry. In many other places, there no longer is enough water to  supply farmers’ peak needs during Kansas’ scorching summers.</p>
<p>And when the groundwater runs out, it is gone for good. Refilling the  aquifer would require hundreds, if not thousands, of years of rains.</p></blockquote>
<p>This is a <a href="http://pubs.usgs.gov/fs/fs-103-03/">widespread</a>, generic problem, and instance of the <a href="http://www.sciencemag.org/content/162/3859/1243.full">tragedy of the commons</a> archetype:</p>
<p><img class="aligncenter size-medium wp-image-3183" title="tragedyCommons" src="http://blog.metasd.com/wp-content/uploads/2013/05/tragedyCommons-500x409.png" alt="" width="500" height="409" /></p>
<p>Alternately, as an economist might put it, depletion of groundwater is typically an externality, with zero rent paid from users to owners (us).</p>
<p>There are three facets to management of the problem: the commons problem, detail complexity from the complex geology of aquifers, and dynamic complexity. Allocation of property rights solves the commons problem, but not the others (see <a href="http://scholar.google.com/citations?user=vT7j0twAAAAJ&amp;hl=en">Erling Moxnes&#8217; interesting work on this</a>).</p>
<p>Sniffing around for material for this post, I found it easy to get <a href="https://www.google.com/search?q=groundwater+balance&amp;client=firefox-a&amp;hs=UC8&amp;rls=org.mozilla:en-US:official&amp;source=lnms&amp;tbm=isch&amp;sa=X&amp;ei=LTiaUZjmLovnigKms4GQBQ&amp;ved=0CAcQ_AUoAQ&amp;biw=1920&amp;bih=1007#client=firefox-a&amp;rls=org.mozilla:en-US%3Aofficial&amp;tbm=isch&amp;sa=1&amp;q=aquifer+equilbrium&amp;oq=aquifer+equilbrium&amp;gs_l=img.3...5785.7663.0.8076.8.7.0.0.0.2.194.699.5j2.7.0...0.0...1c.1.14.img.YTqRB3LzGXY&amp;bav=on.2,or.r_cp.r_qf.&amp;fp=bb6400e6b3acd590&amp;biw=1920&amp;bih=1007">lots of complicated information</a> about aquifers, but hard to find any simple stock-flow pictures that revealed their state or dynamics, like this:</p>
<p><img class="aligncenter size-medium wp-image-3184" title="usgsfig1" src="http://blog.metasd.com/wp-content/uploads/2013/05/usgsfig1-500x271.gif" alt="" width="500" height="271" /></p>
<p style="text-align: center;"><em>Source: <a href="http://pubs.usgs.gov/fs/fs-103-03/">USGS</a></em></p>
<p>This suggests that there&#8217;s some low-hanging fruit to be harvested through provision of simple feedback, as in the <a href="http://climateinteractive.org/scoreboard">Climate Scoreboard</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.metasd.com/2013/05/depleting-fossil-water/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blood pressure regulation</title>
		<link>http://blog.metasd.com/2013/05/blood-pressure-regulation/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=blood-pressure-regulation</link>
		<comments>http://blog.metasd.com/2013/05/blood-pressure-regulation/#comments</comments>
		<pubDate>Thu, 09 May 2013 13:22:33 +0000</pubDate>
		<dc:creator>Tom Fid</dc:creator>
				<category><![CDATA[Aside]]></category>
		<category><![CDATA[Feedback Everywhere]]></category>
		<category><![CDATA[health]]></category>

		<guid isPermaLink="false">http://blog.metasd.com/?p=3174</guid>
		<description><![CDATA[The Tech Review Arxiv blog has a neat summary of new research on high blood pressure. It turns out that the culprit may be a feedback mechanism that can&#8217;t adequately respond to stiffening of the arteries with age: The human body has a well understood mechanism for monitoring blood pressure changes, consisting of sensors embedded [...]]]></description>
			<content:encoded><![CDATA[<p><a href="www.technologyreview.com/view/514611/the-cause-of-high-blood-pressure-revealed-by-computer-modelling/">The Tech Review Arxiv blog has a neat summary of new research on high blood pressure</a>. It turns out that the culprit may be a feedback mechanism that can&#8217;t adequately respond to stiffening of the arteries with age:</p>
<blockquote><p>The human body has a well understood mechanism for monitoring blood pressure changes, consisting of sensors embedded in the major arterial walls that monitor changes in pressure and then trigger other changes in the body to increase or reduce the pressure as necessary, such as the regulation of the volume of fluid in the blood vessels. This is known as the baroreceptor reflex.</p>
<p>So an interesting question is why this system does not respond appropriately as the body ages. Why, for example, does this system not reduce the volume of fluid in the blood to decrease the pressure when it senses a high systolic pressure in an elderly person?</p>
<p>The theory that Pettersen and co have tested is that the sensors in the arterial walls do not directly measure pressure but instead measure strain, that is the deformation of the arterial walls.</p>
<p>As these walls stiffen due to the natural ageing process, the sensors become less able to monitors changes in pressure and therefore less able to compensate.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.metasd.com/2013/05/blood-pressure-regulation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Robust segregation</title>
		<link>http://blog.metasd.com/2013/05/robust-segregation/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=robust-segregation</link>
		<comments>http://blog.metasd.com/2013/05/robust-segregation/#comments</comments>
		<pubDate>Tue, 07 May 2013 16:18:24 +0000</pubDate>
		<dc:creator>Tom Fid</dc:creator>
				<category><![CDATA[Aside]]></category>
		<category><![CDATA[Feedback Everywhere]]></category>

		<guid isPermaLink="false">http://blog.metasd.com/?p=3170</guid>
		<description><![CDATA[More than 40 years after Schelling&#8217;s classic analysis, segregation appears to be alive and well: Flickr/Eric Fischer As Schelling showed, it doesn&#8217;t take draconian measures for this behavior to emerge. It&#8217;s a robust (but suboptimal) outcome of weak coupling by positive feedback.]]></description>
			<content:encoded><![CDATA[<p>More than 40 years after <a href="http://www.casos.cs.cmu.edu/education/phd/classpapers/Schelling_Segregation_1969.pdf">Schelling&#8217;s classic analysis</a>, <a href="http://www.businessinsider.com/most-segregated-cities-census-maps-2013-4?op=1#ixzz2Rx64bVpr">segregation appears to be alive and well</a>:</p>
<p><a href="http://blog.metasd.com/wp-content/uploads/2013/05/new-york-ny.jpg"><img class="aligncenter size-medium wp-image-3171" title="new-york-ny" src="http://blog.metasd.com/wp-content/uploads/2013/05/new-york-ny-500x500.jpg" alt="" width="500" height="500" /></a></p>
<p style="text-align: center;"><em><a href="http://www.flickr.com/photos/walkingsf/5560488484/in/set-72157626354149574/">Flickr/Eric Fischer</a></em></p>
<p>As Schelling showed, it doesn&#8217;t take draconian measures for this behavior to emerge. It&#8217;s a robust (but suboptimal) outcome of weak coupling by positive feedback.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.metasd.com/2013/05/robust-segregation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Early warnings of catastrophe</title>
		<link>http://blog.metasd.com/2013/04/early-warnings-of-catastrophe/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=early-warnings-of-catastrophe</link>
		<comments>http://blog.metasd.com/2013/04/early-warnings-of-catastrophe/#comments</comments>
		<pubDate>Tue, 30 Apr 2013 16:54:07 +0000</pubDate>
		<dc:creator>Tom Fid</dc:creator>
				<category><![CDATA[Sustainability]]></category>
		<category><![CDATA[SystemDynamics]]></category>

		<guid isPermaLink="false">http://blog.metasd.com/?p=3137</guid>
		<description><![CDATA[There are warning signs when the active structure of a system is changing. But a new paper shows that they may not always be helpful for averting surprise catastrophes. Catastrophic Collapse Can Occur without Early Warning: Examples of Silent Catastrophes in Structured Ecological Models (PLOS ONE &#8211; open access) Catastrophic and sudden collapses of ecosystems [...]]]></description>
			<content:encoded><![CDATA[<p>There are warning signs when the active structure of a system is changing. But a new paper shows that they may not always be helpful for averting surprise catastrophes.</p>
<blockquote><p><a href="http://www.plosone.org/article/info%3Adoi%2F10.1371%2Fjournal.pone.0062033">Catastrophic Collapse Can Occur without Early Warning: Examples of Silent Catastrophes in Structured Ecological Models</a> (PLOS ONE &#8211; open access)</p>
<p>Catastrophic and sudden collapses of ecosystems are sometimes preceded  by early warning signals that potentially could be used to predict and  prevent a forthcoming catastrophe. Universality of these early warning  signals has been proposed, but no formal proof has been provided. Here,  we show that in relatively simple ecological models the most commonly  used early warning signals for a catastrophic collapse can be silent. We  underpin the mathematical reason for this phenomenon, which involves  the direction of the eigenvectors of the system. Our results demonstrate  that claims on the universality of early warning signals are not  correct, and that catastrophic collapses can occur without prior  warning. In order to correctly predict a collapse and determine whether  early warning signals precede the collapse, detailed knowledge of the  mathematical structure of the approaching bifurcation is necessary.  Unfortunately, such knowledge is often only obtained after the collapse  has already occurred.</p></blockquote>
<p>To get the insight, it helps to back up a bit. (If you haven&#8217;t read my posts on <a href="http://blog.metasd.com/2013/04/what-the-heck-is-a-bifurcation/">bifurcations</a> and <a href="http://blog.metasd.com/2013/04/fun-with-1d-vector-fields/">1D vector fields</a>, they&#8217;re good background for this.)</p>
<p>Consider a first order system, with a flow that is a sinusoid, plus noise:</p>
<p><img class="aligncenter size-full wp-image-3162" title="StockFlowDisturbance" src="http://blog.metasd.com/wp-content/uploads/2013/04/StockFlowDisturbance.png" alt="" width="395" height="275" /></p>
<pre>Flow=<strong>a</strong>*SIN(Stock*2*pi) + disturbance</pre>
<p>For different values of <strong>a</strong>, and disturbance = 0, this looks like:</p>
<p><a href="http://blog.metasd.com/wp-content/uploads/2013/04/StableUnstablePhase.png"><img class="aligncenter size-medium wp-image-3152" title="StableUnstablePhase" src="http://blog.metasd.com/wp-content/uploads/2013/04/StableUnstablePhase-500x343.png" alt="" width="500" height="343" /></a>For <strong><span style="color: #008000;">a = 1</span></strong>, the system has a stable point at stock=0.5. The gain of the negative feedback that maintains the stable point at  0.5, given by the slope of the stock-flow phase plot, is strong, so the stock will quickly return to 0.5 if disturbed.</p>
<p>For <span style="color: #ff0000;"><strong>a = -1</strong></span>, the system is unstable at 0.5, which has become a tipping point. It&#8217;s stable at the extremes where the stock is 0 or 1. If the stock starts at 0.5, the slightest disturbance triggers feedback to carry it to 0 or 1.</p>
<p>For <span style="color: #0000ff;"><strong>a = 0.04</strong></span>, the system is approaching the transition (i.e. bifurcation) between stable and unstable behavior around 0.5. The gain of the negative feedback that maintains the stable point at 0.5, given by the slope of the stock-flow phase plot, is weak. If something disturbs the system away from 0.5, it will be slow to recover. The effective time constant of the system around 0.5, which is inversely proportional to <strong>a</strong>, becomes long for small <strong>a</strong>. This is termed <em>critical slowing down</em>.</p>
<p>For <strong>a=0</strong> exactly, not shown, there is no feedback and the system is a pure random walk that integrates the disturbance.</p>
<p>The neat thing about critical slowing down, or more generally the approach of a bifurcation, is that it leaves fingerprints. Here&#8217;s a run of the system above, with <span style="color: #008000;">a=1</span> (stable) initially, and ramping to <span style="color: #ff0000;">a=-.33</span> (tipping) finally. It crosses a=0 (the bifurcation) at T=75. The disturbance is mild <a href="http://models.metasd.com/pink-noise/">pink noise</a>.</p>
<p><img class="aligncenter size-full wp-image-3154" title="Slowing2" src="http://blog.metasd.com/wp-content/uploads/2013/04/Slowing2.png" alt="" width="488" height="346" /></p>
<p>Notice that, as <strong>a</strong> approaches zero, particularly between T=50 and T=75, the variance of the stock increases considerably.</p>
<p>This means that you can potentially detect approaching bifurcations in time series without modeling the detailed interactions in the system, by observing the variance or <a href="http://arxiv.org/abs/1208.4158">similar, better other signs</a>. Such analyses indicate that there has been a <a href="http://arxiv.org/abs/1204.5445">qualitative change in Arctic sea ice</a> behavior, for example.</p>
<p>Now, back to the original paper.</p>
<p>It turns out that there&#8217;s a catch. Not all systems are neatly one dimensional (though they operate on low-dimensional manifolds surprisingly often).</p>
<p>In a multidimensional phase space, the symptoms of critical slowing down don&#8217;t necessarily reveal themselves in all variables. They have a preferred orientation in the phase space, associated with the eigenvectors of the eigenvalue that&#8217;s changing at the bifurcation.</p>
<p>The authors explore a third-order ecological model with juvenile and adult prey and a predator:</p>
<p><a href="http://models.metasd.com/wp-content/uploads/2013/04/Structure.png"><img class="aligncenter size-medium wp-image-458" title="Structure" src="http://models.metasd.com/wp-content/uploads/2013/04/Structure-500x392.png" alt="" width="500" height="392" /></a></p>
<p>Predators undergo a collapse when their mortality rate exceeds a critical value (.553). Here, I vary the mortality rate gradually from .55 to .56, with the collapse occurring around time 450:</p>
<p><a href="http://blog.metasd.com/wp-content/uploads/2013/04/Collapse.png"><img class="aligncenter size-medium wp-image-3163" title="Collapse" src="http://blog.metasd.com/wp-content/uploads/2013/04/Collapse-500x343.png" alt="" width="500" height="343" /></a></p>
<p>Note that the critical value of the mortality rate is actually passed around time 300, so it takes a while for the transient collapse to occur. Also notice that the variance of the adult population changes a lot post-collapse. This is another symptom of qualitative change in the dynamics.</p>
<p>The authors show that, in this system, approaching criticality of the predator mortality rate <em>only </em>reveals itself in increased variance or autocorrelation if noise impacts the juvenile population, and even then you have to be able to <em>see </em>the juvenile population.</p>
<blockquote><p>We have shown three examples where catastrophic collapse can occur without prior early warning signals in autocorrelation or variance. Although critical slowing down is a universal property of fold bifurcations, this does not mean that the increased sensitivity will necessarily manifest itself in the system variables. Instead, whether the population numbers will display early warning will depend on the direction of the dominant eigenvector of the system, that is, the direction in which the system is destabilizing. This theoretical point also applies to other proposed early warning signals, such as skewness [18], spatial correlation [19], and conditional heteroscedasticity [20]. In our main example, early warning signal only occurs in the juvenile population, which in fact could easily be overlooked in ecological systems (e.g. exploited, marine fish stocks), as often only densities of older, more mature individuals are monitored. Furthermore, the early warning signals can in some cases be completely absent, depending on the direction of the perturbations to the system.</p></blockquote>
<p>They then detail some additional reasons for lack of warning in similar systems.</p>
<blockquote><p>In conclusion, we propose to reject the currently popular hypothesis that catastrophic shifts are preceded by universal early warning signals. We have provided counterexamples of silent catastrophes, and we have pointed out the underlying mathematical reason for the absence of early warning signals. In order to assess whether specific early warning signals will occur in a particular system, detailed knowledge of the underlying mathematical structure is necessary.</p></blockquote>
<p>In other words, critical slowing down is a convenient, generic sign of impending change in a time series, but its absence is not a reliable indicator that all is well. Without some knowledge of the system in question, surprise can easily occur.</p>
<p>I think one could further strengthen the argument against early warning by looking at transients. In my simulation above, I&#8217;d argue that it takes at least 100 time units to detect a change in the variance of the juvenile population with any confidence, after it passes the critical point around T=300 (longer, if someone&#8217;s job depends on <em>not </em>seeing the change). The period of oscillations of the adult population in response to a disturbance is about 20 time units. So it seems likely that early warning, even where it exists, can only be established on time scales that are long with respect to the natural time scale of the system and environmental changes that affect it. Therefore, while signs of critical slowing down might exist in principle, they&#8217;re not particularly useful in this setting.</p>
<p><a href="http://models.metasd.com/?p=457">The models are in my library.</a></p>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">
<h1>Catastrophic Collapse Can Occur without Early Warning: Examples of Silent Catastrophes in Structured Ecological Models</h1>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.metasd.com/2013/04/early-warnings-of-catastrophe/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A musical interlude</title>
		<link>http://blog.metasd.com/2013/04/a-musical-interlude/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=a-musical-interlude</link>
		<comments>http://blog.metasd.com/2013/04/a-musical-interlude/#comments</comments>
		<pubDate>Tue, 30 Apr 2013 12:00:48 +0000</pubDate>
		<dc:creator>Tom Fid</dc:creator>
				<category><![CDATA[Aside]]></category>

		<guid isPermaLink="false">http://blog.metasd.com/?p=3144</guid>
		<description><![CDATA[There&#8217;s more to life than mathematical modeling, fortunately. My boys &#8230; &#8230; at a Ceilidh: &#8230; in the MSU Cello Festival concert: &#8230; during intermission at Bozeman&#8217;s Pecha Kucha night #7: The Helmholtz motion of bowed strings is an interesting dynamic system, but that&#8217;s a topic for another day.]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s more to life than mathematical modeling, fortunately. My boys &#8230;</p>
<p>&#8230; at a Ceilidh:</p>
<p><iframe width="500" height="375" src="http://www.youtube.com/embed/KwJB0IG1taI?feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>&#8230; in the MSU Cello Festival concert:</p>
<p><iframe width="500" height="281" src="http://www.youtube.com/embed/h-ivA1xc8qQ?feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>&#8230; during intermission at Bozeman&#8217;s Pecha Kucha night #7:</p>
<p><iframe width="500" height="281" src="http://www.youtube.com/embed/TtOVo7vSJbY?feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>The <a href="http://youtu.be/6JeyiM0YNo4">Helmholtz motion</a> of <a href="http://youtu.be/KPpBvHXYWz4">bowed strings</a> is an <a href="http://www.phys.unsw.edu.au/jw/Bows.html">interesting dynamic system</a>, but that&#8217;s a topic for another day.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.metasd.com/2013/04/a-musical-interlude/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Plight of the pika</title>
		<link>http://blog.metasd.com/2013/04/plight-of-the-pika/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=plight-of-the-pika</link>
		<comments>http://blog.metasd.com/2013/04/plight-of-the-pika/#comments</comments>
		<pubDate>Mon, 29 Apr 2013 19:09:40 +0000</pubDate>
		<dc:creator>Tom Fid</dc:creator>
				<category><![CDATA[Aside]]></category>
		<category><![CDATA[Climate]]></category>
		<category><![CDATA[Montana]]></category>

		<guid isPermaLink="false">http://blog.metasd.com/?p=3141</guid>
		<description><![CDATA[One of the smaller and cuter stakeholders in climate change is the pika, an alpine mini-rabbit that has nowhere to go as warming takes their habitable zone above mountaintops. Support pika research on RocketHub.]]></description>
			<content:encoded><![CDATA[<p>One of the smaller and cuter stakeholders in climate change is the pika, an alpine mini-rabbit that has nowhere to go as warming takes their habitable zone above mountaintops.</p>
<p><iframe width="500" height="281" src="http://www.youtube.com/embed/AWd6LgJwuUw?feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>Support pika research on <a href="http://www.rockethub.com/projects/18782-the-plight-of-the-pika">RocketHub</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.metasd.com/2013/04/plight-of-the-pika/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hair of the dog that bit you climate policy</title>
		<link>http://blog.metasd.com/2013/04/hair-of-the-dog-that-bit-you-climate-policy/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=hair-of-the-dog-that-bit-you-climate-policy</link>
		<comments>http://blog.metasd.com/2013/04/hair-of-the-dog-that-bit-you-climate-policy/#comments</comments>
		<pubDate>Fri, 26 Apr 2013 12:37:23 +0000</pubDate>
		<dc:creator>Tom Fid</dc:creator>
				<category><![CDATA[energy]]></category>
		<category><![CDATA[Integrated Assessment]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.metasd.com/?p=3130</guid>
		<description><![CDATA[Roy Spencer on reducing emissions by increasing emissions: COL: Let’s say tomorrow, evidence is found that proves to everyone that global warming as a result of human released emissions of CO2 and methane, is real. What would you suggest we do? SPENCER: I would say we need to grow the economy as fast as possible, [...]]]></description>
			<content:encoded><![CDATA[<p>Roy Spencer on reducing emissions by increasing emissions:</p>
<blockquote><p>COL: Let’s say tomorrow, evidence is found that proves to everyone that global warming as a result of human released emissions of CO2 and methane, is real. What would you suggest we do?</p>
<p>SPENCER: I would say we need to grow the economy as fast as possible, in order to afford the extra R&amp;D necessary to develop new energy technologies. Current solar and wind technologies are too expensive, unreliable, and can only replace a small fraction of our energy needs. Since the economy runs on inexpensive energy, in order to grow the economy we will need to use fossil fuels to create that extra wealth. In other words, we will need to burn even more fossil fuels in order to find replacements for fossil fuels.</p>
<p style="text-align: right;"><a href="http://planet3.org/2013/04/24/roy-spencers-peculiar-prescription/">via Planet 3.0</a></p>
</blockquote>
<p>On the face of it, this is absurd. Reverse a positive feedback loop by making it stronger? But it could work, if given the right structure &#8211; a relative quit smoking by going in a closet to smoke until he couldn&#8217;t stand it anymore. Here&#8217;s what I can make of the mental model:</p>
<p><a href="http://blog.metasd.com/wp-content/uploads/2013/04/SpencerHairOfDog.png"><img class="aligncenter size-medium wp-image-3132" title="SpencerHairOfDog" src="http://blog.metasd.com/wp-content/uploads/2013/04/SpencerHairOfDog-500x240.png" alt="" width="500" height="240" /></a>Spencer&#8217;s arguing that we need to run <span style="color: #0000ff;">reinforcing loops R1 and R2</span> as hard as possible, because <span style="color: #008000;">loop R3</span> is too weak to sustain the economy, because renewables (or more generally non-emitting sources) are too expensive. R1 and R2 provide the wealth to drive R&amp;D, in a <span style="color: #008000;">virtuous cycle R4 that activates R3</span> and shuts down the fossil sector via <span style="color: #008000;">B2</span>. There are a number of problems with this thinking.</p>
<ul>
<li>Rapid growth around R1 rapidly grows <span style="color: #800000;">environmental damage (B1)</span> &#8211; not only climate, but also local air quality, etc. It also contributes to depletion (not shown), and with depletion comes increasing cost (weakening R1) and greater marginal damage from extraction technologies (not shown). It makes no sense to manage the economy as if R1 exists and B1 does not. R3 looks much more favorable today in light of this.</li>
<li>Spencer&#8217;s view discounts delays. But there are long delays in R&amp;D and investment turnover, which will permit more environmental damage to accumulate while we wait for R&amp;D.</li>
<li>In addition to the delay, R4 is weak. For example, if economic growth is 3%/year, and all technical progress in renewables is from R&amp;D with a 70% learning rate, it&#8217;ll take 44 years to halve renewable costs.</li>
<li>A 70% learning curve for R&amp;D is highly optimistic. Moreover, a fair amount of renewable cost reductions are due to learning-by-doing and scale economies (not shown), which require R3 to be active, not R4. No current deployment, no progress.</li>
<li>Spencer&#8217;s argument ignores efficiency (not shown), which works regardless of the source of energy. Spurring investment in the fossil loop R1 sends the wrong signal for efficiency, by depressing current prices.</li>
</ul>
<p>In truth, these feedbacks are already present in many energy models. Most of those are standard economic stuff &#8211; equilibrium, rational expectations, etc. &#8211; assumptions which favor growth. Yet among the subset that includes endogenous technology, I&#8217;m not aware of a single instance that finds a growth+R&amp;D led policy to be optimal or even effective.</p>
<p>It&#8217;s time for the techno-optimists like Spencer and Breakthrough to put up or shut up. Either articulate the argument in a formal model that can be shared and tested, or admit that it&#8217;s a nice twinkle in the eye that regrettably lacks evidence.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.metasd.com/2013/04/hair-of-the-dog-that-bit-you-climate-policy/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Braveheart &amp; Rogaine</title>
		<link>http://blog.metasd.com/2013/04/braveheart-rogaine/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=braveheart-rogaine</link>
		<comments>http://blog.metasd.com/2013/04/braveheart-rogaine/#comments</comments>
		<pubDate>Thu, 25 Apr 2013 15:13:37 +0000</pubDate>
		<dc:creator>Tom Fid</dc:creator>
				<category><![CDATA[Aside]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://blog.metasd.com/?p=3126</guid>
		<description><![CDATA[The Reinhart &#38; Rogoff debt/growth paper continues to make a stir for it&#8217;s basic Excel errors. Colbert has the latest &#38; funniest take on it. Two things about this surprise me. Confronted with obvious and irrefutable errors, the authors double down and admit nothing. They also downplay the significance of the results, &#8216;&#8230; we are [...]]]></description>
			<content:encoded><![CDATA[<p>The Reinhart &amp; Rogoff debt/growth paper continues to make a stir for it&#8217;s basic <a href="http://andrewgelman.com/2013/04/17/excel-bashing/">Excel errors</a>. <a href="http://www.colbertnation.com/the-colbert-report-videos/425748/april-23-2013/austerity-s-spreadsheet-error?xrs=share_copy">Colbert has the latest &amp; funniest take on it</a>.</p>
<p>Two things about this surprise me.</p>
<p>Confronted with obvious and irrefutable errors, <a href="http://andrewgelman.com/2013/04/16/memo-to-reinhart-and-rogoff-i-think-its-best-to-admit-your-errors-and-go-on-from-there/">the authors double down and admit nothing</a>. They also <a href="http://blogs.wsj.com/economics/2013/04/16/reinhart-rogoff-response-to-critique/">downplay the significance of the results</a>, &#8216;&#8230; we are very careful in all our papers to speak of “association” and not “causality” &#8230;&#8217;</p>
<p>But of course the (amplified) message, Debt/GDP&gt;90%=doom, was taken causally in the policy world; see the multiple clips in the intro to the <a href="http://www.colbertnation.com/the-colbert-report-videos/425748/april-23-2013/austerity-s-spreadsheet-error?xrs=share_copy">Colbert video</a>. Politicians are nuts to accord one paper in a sea of macroeconomic thought so much weight, but I guess this was the one they liked.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.metasd.com/2013/04/braveheart-rogaine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
