Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
DEtools[riccati_system] - solve a system of Riccati differential equations or convert it into a matrix form
Calling Sequence
riccati_system(deqns, vars)
riccati_system(deqns, vars, matrix_only)
Parameters
deqns
-
set of riccati equations and/or initial conditions
vars
name or set of names to be solved for
matrix_only
indicator to convert into a matrix form without solving
Description
riccati_system can find a closed-form solution for certain systems of riccati ODEs. A system of riccati ODEs of n variables is:
with initial conditions
where are the unknown functions and are polynomials in of second degree with function coefficients.
To solve this system, riccati_system tries to convert it into a matrix equation,
with
where , and are n by n matrices. The user can request this matrix form instead of a full solution by using the 'matrix_only' option. In this case a sequence is returned.
This function is part of the DEtools package, and so it can be used in the form riccati_system(..) only after executing the command with(DEtools). However, it can always be accessed through the long form of the command by using DEtools[riccati_system](..).
Examples
Solve the system:
Verify the solution - see odetest
Get the matrix form:
Solve the matrix form (see matrix_riccati)
Recalling the form of the matrix , construct the solution from
Verify this solution:
See Also
DEtools, dsolve, matrix_riccati, odetest, riccatisol
Download Help Document