Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
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