[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Getfem-commits] r4983 - /trunk/getfem/doc/sphinx/source/userdoc/model_o
From: |
Yves . Renard |
Subject: |
[Getfem-commits] r4983 - /trunk/getfem/doc/sphinx/source/userdoc/model_object.rst |
Date: |
Fri, 01 May 2015 10:46:57 -0000 |
Author: renard
Date: Fri May 1 12:46:56 2015
New Revision: 4983
URL: http://svn.gna.org/viewcvs/getfem?rev=4983&view=rev
Log:
minor change
Modified:
trunk/getfem/doc/sphinx/source/userdoc/model_object.rst
Modified: trunk/getfem/doc/sphinx/source/userdoc/model_object.rst
URL:
http://svn.gna.org/viewcvs/getfem/trunk/getfem/doc/sphinx/source/userdoc/model_object.rst?rev=4983&r1=4982&r2=4983&view=diff
==============================================================================
--- trunk/getfem/doc/sphinx/source/userdoc/model_object.rst (original)
+++ trunk/getfem/doc/sphinx/source/userdoc/model_object.rst Fri May 1
12:46:56 2015
@@ -65,14 +65,24 @@
.. cfunction:: add_fixed_size_variable(name, size, niter=1)
Add a variable of fixed size. ``name`` is a string which designate the
- variable. ``niter`` is the number of copy of the variable (used for time
- integration schemes).
+ variable. ``niter`` is the number of copy of the variable.
+
+.. cfunction:: add_fixed_size_variable(name, sizes, niter=1)
+
+ Add a variable of fixed size. ``name`` is a string which designate the
+ variable. ``sizes`` is a vector of dimension for matrix or tensor fixed
+ size variables. ``niter`` is the number of copy of the variable.
.. cfunction:: add_fixed_size_data(name, size, niter=1)
Add a data of fixed size. ``name`` is a string which designate the data.
- ``niter`` is the number of copy of the data (used for time integration
- schemes).
+ ``niter`` is the number of copy of the data.
+
+.. cfunction:: add_fixed_size_data(name, sizes, niter=1)
+
+ Add a data of fixed size. ``name`` is a string which designate the data.
+ ``sizes`` is a vector of dimension for matrix or tensor fixed
+ size variables. ``niter`` is the number of copy of the data.
.. cfunction:: add_initialized_fixed_size_data(name, V)
@@ -88,20 +98,18 @@
Add a variable being the dofs of a finite element method ``mf``. ``name``
is a
string which designate the variable. ``niter`` is the number of copy of the
- variable (used for time integration schemes).
+ variable.
.. cfunction:: add_fem_data(name, mf, niter=1)
Add a data being the dofs of a finite element method ``mf``. ``name`` is a
- string which designate the data. ``niter`` is the number of copy of the data
- (used for time integration schemes).
+ string which designate the data. ``niter`` is the number of copy of the
data.
.. cfunction:: add_initialized_fem_data(name, mf, V, niter=1)
Add a data being the dofs of a finite element method ``mf`` initialized with
the given vector ``V``. ``name`` is a string which designate the data.
- ``niter`` is the number of copy of the data (used for time integration
- schemes).
+ ``niter`` is the number of copy of the data.
.. cfunction:: add_multiplier(name, mf, primal_name, niter=1)
@@ -114,7 +122,7 @@
done and a special algorithm is called to extract independent constraints.
This
algorithm is optimized for boundary multipliers (see gmm::range_basis). Use
it
with care for volumic multipliers. ``niter`` is the number of copy of the
- variable (used for time integration schemes). Note that for complex terms,
only
+ variable. Note that for complex terms, only
the real part is considered to filter the multiplier.
.. cfunction:: real_variable(name, niter=1)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Getfem-commits] r4983 - /trunk/getfem/doc/sphinx/source/userdoc/model_object.rst,
Yves . Renard <=