1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML3.2 EN">
<HTML>
<HEAD> <link rel="canonical" href="http://www.mcs.anl.gov/petsc/petsc-current/docs/manualpages/TS/TSARKIMEX.html" />
<META NAME="GENERATOR" CONTENT="DOCTEXT">
<TITLE>TSARKIMEX</TITLE>
</HEAD>
<BODY BGCOLOR="FFFFFF">
<div id="version" align=right><b>petsc-3.7.5 2017-01-01</b></div>
<div id="bugreport" align=right><a href="mailto:petsc-maint@mcs.anl.gov?subject=Typo or Error in Documentation &body=Please describe the typo or error in the documentation: petsc-3.7.5 v3.7.5 docs/manualpages/TS/TSARKIMEX.html "><small>Report Typos and Errors</small></a></div>
<A NAME="TSARKIMEX"><H1>TSARKIMEX</H1></A>
ODE and DAE solver using Additive Runge-Kutta IMEX schemes These methods are intended for problems with well-separated time scales, especially when a slow scale is strongly
nonlinear such that it is expensive to solve with a fully implicit method. The user should provide the stiff part
of the equation using <A HREF="../TS/TSSetIFunction.html#TSSetIFunction">TSSetIFunction</A>() and the non-stiff part with <A HREF="../TS/TSSetRHSFunction.html#TSSetRHSFunction">TSSetRHSFunction</A>().
<P>
<H3><FONT COLOR="#CC3333">Notes</FONT></H3>
The default is <A HREF="../TS/TSARKIMEX3.html#TSARKIMEX3">TSARKIMEX3</A>, it can be changed with <A HREF="../TS/TSARKIMEXSetType.html#TSARKIMEXSetType">TSARKIMEXSetType</A>() or -ts_arkimex_type
<P>
If the equation is implicit or a DAE, then <A HREF="../TS/TSSetEquationType.html#TSSetEquationType">TSSetEquationType</A>() needs to be set accordingly. Refer to the manual for further information.
<P>
Methods with an explicit stage can only be used with ODE in which the stiff part G(t,X,Xdot) has the form Xdot + Ghat(t,X).
<P>
Consider trying <A HREF="../TS/TSROSW.html#TSROSW">TSROSW</A> if the stiff part is linear or weakly nonlinear.
<P>
<P>
<H3><FONT COLOR="#CC3333">See Also</FONT></H3>
<A HREF="../TS/TSCreate.html#TSCreate">TSCreate</A>(), <A HREF="../TS/TS.html#TS">TS</A>, <A HREF="../TS/TSSetType.html#TSSetType">TSSetType</A>(), <A HREF="../TS/TSARKIMEXSetType.html#TSARKIMEXSetType">TSARKIMEXSetType</A>(), <A HREF="../TS/TSARKIMEXGetType.html#TSARKIMEXGetType">TSARKIMEXGetType</A>(), <A HREF="../TS/TSARKIMEXSetFullyImplicit.html#TSARKIMEXSetFullyImplicit">TSARKIMEXSetFullyImplicit</A>(), <A HREF="../TS/TSARKIMEX1BEE.html#TSARKIMEX1BEE">TSARKIMEX1BEE</A>,
<BR><A HREF="../TS/TSARKIMEX2C.html#TSARKIMEX2C">TSARKIMEX2C</A>, <A HREF="../TS/TSARKIMEX2D.html#TSARKIMEX2D">TSARKIMEX2D</A>, <A HREF="../TS/TSARKIMEX2E.html#TSARKIMEX2E">TSARKIMEX2E</A>, <A HREF="../TS/TSARKIMEX3.html#TSARKIMEX3">TSARKIMEX3</A>, <A HREF="../TS/TSARKIMEXL2.html#TSARKIMEXL2">TSARKIMEXL2</A>, <A HREF="../TS/TSARKIMEXA2.html#TSARKIMEXA2">TSARKIMEXA2</A>, <A HREF="../TS/TSARKIMEXARS122.html#TSARKIMEXARS122">TSARKIMEXARS122</A>,
<A HREF="../TS/TSARKIMEX4.html#TSARKIMEX4">TSARKIMEX4</A>, <A HREF="../TS/TSARKIMEX5.html#TSARKIMEX5">TSARKIMEX5</A>, <A HREF="../TS/TSARKIMEXPRSSP2.html#TSARKIMEXPRSSP2">TSARKIMEXPRSSP2</A>, <A HREF="../TS/TSARKIMEXARS443.html#TSARKIMEXARS443">TSARKIMEXARS443</A>, <A HREF="../TS/TSARKIMEXBPR3.html#TSARKIMEXBPR3">TSARKIMEXBPR3</A>, <A HREF="../TS/TSARKIMEXType.html#TSARKIMEXType">TSARKIMEXType</A>, <A HREF="../TS/TSARKIMEXRegister.html#TSARKIMEXRegister">TSARKIMEXRegister</A>()
<P>
<P><B><P><B><FONT COLOR="#CC3333">Level:</FONT></B>beginner
<BR><FONT COLOR="#CC3333">Location:</FONT></B><A HREF="../../../src/ts/impls/arkimex/arkimex.c.html#TSARKIMEX">src/ts/impls/arkimex/arkimex.c</A>
<BR><A HREF="./index.html">Index of all TS routines</A>
<BR><A HREF="../../index.html">Table of Contents for all manual pages</A>
<BR><A HREF="../singleindex.html">Index of all manual pages</A>
<P><H3><FONT COLOR="#CC3333">Examples</FONT></H3>
<A HREF="../../../src/ts/examples/tutorials/ex22.c.html">src/ts/examples/tutorials/ex22.c.html</A><BR>
<A HREF="../../../src/ts/examples/tutorials/ex25.c.html">src/ts/examples/tutorials/ex25.c.html</A><BR>
<A HREF="../../../src/ts/examples/tutorials/ex31.c.html">src/ts/examples/tutorials/ex31.c.html</A><BR>
<A HREF="../../../src/ts/examples/tutorials/ex35.cxx.html">src/ts/examples/tutorials/ex35.cxx.html</A><BR>
<A HREF="../../../src/ts/examples/tutorials/extchem.c.html">src/ts/examples/tutorials/extchem.c.html</A><BR>
<A HREF="../../../src/ts/examples/tutorials/ex22f.F.html">src/ts/examples/tutorials/ex22f.F.html</A><BR>
<A HREF="../../../src/ts/examples/tutorials/ex22f_mf.F90.html">src/ts/examples/tutorials/ex22f_mf.F90.html</A><BR>
</BODY></HTML>
|