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
Tensor[NPDirectionalDerivatives] - create procedures for the Newman-Penrose directional derivatives
Calling Sequences
NPDirectionalDerivatives(NTetrad, output)
NPDirectionalDerivatives(Fr, output)
Parameters
NTetrad - a list of 4 vectors defining a null tetrad
Fr - the name of an initialized anholonomic frame, created from a null tetrad
output - (optional) keyword argument output = "sequence"
Description
Let g be a metric with signature [1, -1, -1, -1] and [L, N, M, barM ] a null tetrad for g. The Newman-Penrose directional derivative operators take derivatives of functions in the directions of the 4 vectors of the tetrad. See Newman and Penrose, Stewart.
The NPDirectionalDerivatives command returns a table with 4 entries "D", "Delta", "delta", "barDelta". These are the customary labels assigned to the NP directional derivative operators. With optional keyword argument output = "sequence, the directional derivative operators are returned as a sequence of 4 Maple procedures.
This command is part of the DifferentialGeometry:-Tensor package, and so can be used in the form NPDirectionalDerivatives(...) only after executing the commands with(DifferentialGeometry); with(Tensor); in that order. It can always be used in the long form DifferentialGeometry:-Tensor:-NPDirectionalDerivatives.
Examples
Example 1.
Define a manifold S with coordinates [t, x, y, z].
Define a metric g.
Define a null tetrad NTetrad for the metric g. Use GRQuery to verify that NTetrad is a null tetrad.
Calculate the NP directional derivative operators defined by the null tetrad NTetrad. The result is a table with 4 indices.
The individual directional derivatives operators can be extracted from the table NPDirDer.
Note that this coincides with the Lie derivative of f(t, x, y, z) with respect to the first vector in NTetrad.
Example 2.
With the keyword argument output = "sequence", the command NPDirectionalDerivatives will return the directional derivatives operators as a sequence. (Note that the name D is protected by Maple.)
Example 3.
When working with the NP formalism, it is usually advantageous to work with the anholonomic frame defined by the null tetrad. To create anholonomic frames in DifferentialGeometry, see FrameData.
We can now calculate the directional derivatives operators for the null tetrad with the second calling sequence.
See Also
DifferentialGeometry, Tensor, LieDerivative, GRQuery, NullTetrad
Download Help Document