Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
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