<p>Note that you cannot do 5 stages with rks3 because 5 is not square (such a method would be in a different class). Use 4 or 9 stages with rks3.</p>
<div class="gmail_quote">On Jul 18, 2011 6:42 PM, &quot;Sean Farley&quot; &lt;<a href="mailto:sean@mcs.anl.gov">sean@mcs.anl.gov</a>&gt; wrote:<br type="attribution">&gt;&gt;<br>&gt;&gt; Methods can be chosen with -ts_ssp_type {rks2,rks3,rk104}<br>
&gt;&gt;<br>&gt;&gt; rks2: Second order methods with any number s&gt;1 of stages. c_eff = (s-1)/s<br>&gt;&gt;<br>&gt;&gt; rks3: Third order methods with s=n^2 stages, n&gt;1. c_eff = (s-n)/s<br>&gt;&gt;<br>&gt;&gt; rk104: A 10-stage fourth order method. c_eff = 0.6<br>
&gt;&gt;<br>&gt; <br>&gt; This means that there there are only three options for -ts_ssp_type. Namely,<br>&gt; <br>&gt; -ts_ssp_type rks2<br>&gt; -ts_ssp_type rks3<br>&gt; -ts_ssp_type rk104<br>&gt; <br>&gt;&gt;  However, when I write<br>
&gt;&gt;<br>&gt;&gt;  -ts_ssp_type rk53<br>&gt;&gt;<br>&gt; <br>&gt; Therefore, this is not even close to being valid. What are you trying to do?<br>&gt; Get 5 work stages? You can see other ssp options with the -h option<br>
&gt; (probably helps to pipe the output to &#39;grep&#39;),<br>&gt; <br>&gt; ./program -ts_type ssp -h | grep ssp<br>&gt;   -ts_type &lt;beuler&gt;: TS method (one of) euler beuler cn pseudo gl ssp theta<br>&gt; alpha<br>
&gt;   -ts_ssp_type &lt;rk104&gt;: Type of SSP method (one of) rks2 rks3 rk104<br>&gt; (TSSSPSetType)<br>&gt;   -ts_ssp_nstages &lt;5&gt;: Number of stages (TSSSPSetNumStages)<br>&gt; <br>&gt; So, you would probably want the following options,<br>
&gt; <br>&gt; ./program -ts_type ssp -ts_ssp_type rks3 -ts_ssp_nstages 5<br>&gt; <br>&gt; but keep in mind that 5 is the default for -ts_ssp_nstages.<br>&gt; <br>&gt; Hope that helps.<br>&gt; <br>&gt; Sean<br></div>