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
Student[VectorCalculus][SurfaceInt] - compute the surface integral of a function from R^3 to R
Calling Sequence
SurfaceInt(f, domain, output = output_type)
Parameters
f
-
algebraic expression; specify the function to be integrated
domain
list(name) = surface; specify the list of variable names and the surface over which to integrate
output = output_type
(optional) equation; specify 'integral' or 'value' for output_type; specify 'integral' for the function to return an inert integral, and 'value' to return the computed output
Description
The SurfaceInt(f, domain) calling sequence computes the surface integral of the function over the surface specified on the right-hand side of domain. The left-hand side of domain is the list of variables of the function .
If integral is specified for output_type, the command returns an unevaluated integral; if value is specified, the command returns the computed value of the integral. The default value for output_type is value.
Specify the surface domain using unevaluated function calls. The possible surfaces are Box, Sphere, and Surface.
Each must have type algebraic..algebraic. These represent the sides of the box. The surface integral is taken over each face of the box.
Sphere(center, radius)
The first parameter of Sphere, center, must have type 'Vector'(3, algebraic). The second parameter radius must have type algebraic. These represent the center and radius of the sphere, respectively. If a coordinate system attribute is specified on center, the center is interpreted in this coordinate system.
Surface(v, range, coordinate_system)
The first argument, , must have type 'Vector'(3, algebraic). The second argument, range, can be:
* [name1, name2] = region(arguments) where region is any two-dimensional region that Student[VectorCalculus][int] accepts: Circle, Ellipse, Rectangle, Region, Sector, or Triangle.
* name1=range1, name2=range2 This explicitly specifies the ranges for the two parameters.
If the optional final argument, coordinate_system, is specified, it must be an equation of the form coords=nameri or coordinates=name, where name is a recognized coordinate system. is interpreted in the specified coordinate system.
Examples
See Also
assuming, Student[VectorCalculus], Student[VectorCalculus][Flux], Student[VectorCalculus][int], Student[VectorCalculus][LineInt], Student[VectorCalculus][PathInt], type
Download Help Document