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 45 46 47 48 49 50 51 52 53 54 55 56
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML3.2 EN">
<HTML>
<HEAD>
<META NAME="GENERATOR" CONTENT="DOCTEXT">
<link rel="stylesheet" href="/slepc/slepc.css" type="text/css">
<TITLE>NEPSetSplitOperator</TITLE>
</HEAD>
<BODY BGCOLOR="FFFFFF">
<H1>NEPSetSplitOperator</H1>
Sets the operator of the nonlinear eigenvalue problem in split form.
<H3><FONT COLOR="#883300">Synopsis</FONT></H3>
<PRE>
#include "slepcnep.h"
PetscErrorCode NEPSetSplitOperator(NEP nep,PetscInt n,Mat A[],FN f[],MatStructure str)
</PRE>
Collective on <A HREF="../NEP/NEP.html#NEP">NEP</A>, Mat and <A HREF="../FN/FN.html#FN">FN</A>
<P>
<H3><FONT COLOR="#883300">Input Parameters</FONT></H3>
<TABLE border="0" cellpadding="0" cellspacing="0">
<TR><TD WIDTH=40></TD><TD ALIGN=LEFT VALIGN=TOP><B>nep </B></TD><TD> - the nonlinear eigensolver context
</TD></TR>
<TR><TD WIDTH=40></TD><TD ALIGN=LEFT VALIGN=TOP><B>n </B></TD><TD> - number of terms in the split form
</TD></TR>
<TR><TD WIDTH=40></TD><TD ALIGN=LEFT VALIGN=TOP><B>A </B></TD><TD> - array of matrices
</TD></TR>
<TR><TD WIDTH=40></TD><TD ALIGN=LEFT VALIGN=TOP><B>f </B></TD><TD> - array of functions
</TD></TR>
<TR><TD WIDTH=40></TD><TD ALIGN=LEFT VALIGN=TOP><B>str </B></TD><TD> - structure flag for matrices
</TD></TR></TABLE>
<P>
<H3><FONT COLOR="#883300">Notes</FONT></H3>
The nonlinear operator is written as T(lambda) = sum_i A_i*f_i(lambda),
for i=1,...,n. The derivative T'(lambda) can be obtained using the
derivatives of f_i.
<P>
The structure flag provides information about A_i's nonzero pattern
(see MatStructure enum). If all matrices have the same pattern, then
use SAME_NONZERO_PATTERN. If the patterns are different but contained
in the pattern of the first one, then use SUBSET_NONZERO_PATTERN.
Otherwise use DIFFERENT_NONZERO_PATTERN.
<P>
This function must be called before <A HREF="../NEP/NEPSetUp.html#NEPSetUp">NEPSetUp</A>(). If it is called again
after <A HREF="../NEP/NEPSetUp.html#NEPSetUp">NEPSetUp</A>() then the <A HREF="../NEP/NEP.html#NEP">NEP</A> object is reset.
<P>
<P>
<H3><FONT COLOR="#883300">See Also</FONT></H3>
<A HREF="../NEP/NEPGetSplitOperatorTerm.html#NEPGetSplitOperatorTerm">NEPGetSplitOperatorTerm</A>(), <A HREF="../NEP/NEPGetSplitOperatorInfo.html#NEPGetSplitOperatorInfo">NEPGetSplitOperatorInfo</A>()
<BR><P><B><FONT COLOR="#883300">Location: </FONT></B><A HREF="../../../src/nep/interface/nepbasic.c.html#NEPSetSplitOperator">src/nep/interface/nepbasic.c</A>
<BR><A HREF="./index.html">Index of all NEP 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="#883300">Examples</FONT></H3>
<A HREF="../../../src/nep/examples/tutorials/ex22.c.html">src/nep/examples/tutorials/ex22.c.html</A><BR>
</BODY></HTML>
|