-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The following changes have been made: - Add computation of Jacobian matrix and its inverse in creation of mapping; - Jacobian matrix and its inverse may be explicitly provided by user when creating symbolic mapping; - Add CallableMapping where we make symbolic mapping callable; - Allow for pdim (number of physical dimensions) greater than ldim (number of logical dimensions).
- Loading branch information
Showing
16 changed files
with
654 additions
and
387 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
from .basic import * | ||
from .derivatives import * | ||
from .datatype import * | ||
from .domain import * | ||
from .mapping import * | ||
from .measure import * | ||
from .space import * | ||
from .basic import * | ||
from .derivatives import * | ||
from .datatype import * | ||
from .domain import * | ||
from .mapping import * | ||
from .measure import * | ||
from .space import * | ||
from .analytical_mapping import * | ||
from .callable_mapping import * |
Oops, something went wrong.