Skip to main content

Theory of Functional Connections (TFC): A functional interpolation framework with applications in differential equations.

Project description

Theory of Functional Connections (TFC)

A functional interpolation framework with applications in solving differential equations.

Continuous integration Documentation Status PyPI version

Installation guide | Reference documentation | Mathematical documentation

Summary:

The tfc Python module is designed to help you quickly and easily apply the Theory of Functional Connections (TFC) to optimization problems. For more information on the code itself and code-based tutorials, see the Reference documentation. What follows is a brief description of TFC.

TFC is a functional interpolation framework centered around the concept of the constrained expression. A constrained expression is a mathematical functional that expresses all possible functions that satisfy a set of user-defined constraints. For example, suppose you are interested in all possible functions that satisfy the constraint y(0) = 3. The TFC constrained expression for this constraint is,

y(x,g(x)) = g(x) + 3 - g(0),

where g(x) is any function defined at the constraint point; by changing g(x) you get different outputs, but all of these outputs satisfy the constraint regardless of how you choose g(x). In this way, you maintain a completly unrestricted functiton, g(x), which we will call the free function, but always satsify the constraint. Neat, huh?

While developing the constrained expression for our example above was trivial, as you introduce more complex constraints in n-dimensions, trying to derive these constrained expression by-eye, i.e., without a step-by-step framework, becomes extremely difficult. Luckily, TFC comes equiped with a straightfowrward, step-by-step process for developing constrained expressions. For more information on this process, see the Mathematical documentation.

Since the constrained expressions effectively translate the set of all functions defined at the constraints—this set is represented by g(x), the domain of the functional—to the set of all functions that satisfy the constraints—this is the output or co-domain of the constrained exppression—the constrained expresssion can be used to transform constrained optimization problems into unconstrained optimization problems. For example, consider the following differential equation,

yx = 2y,    where    y(0) = 3.

This differential equation can be viewed as an optimization problem where we seek to minimize the residual of the differential equation, i.e., minimize J where J = yx - 2y. Classicly, we would have to minimize J using y(x) subject to the constraint y(0) = 3. However, with TFC we can minimize J using g(x) where y(x,g(x)) = g(x) + 3 - 0, and g(x) is not subject to any constraints. Thus, TFC has translated our differential equation from a constrained optimization problem to an unconstrained optimization problem! The benefits of doing so include:

  • More accurate solutions
  • Faster solutions
  • Robustness to initial guess

For more information on the appliation of TFC to differential equations and its benefits see the Mathematical documentation.

Installation:

The following instructions can be used to install a source distribution via pip or build TFC directly from source.

To install via pip run:

pip install --upgrade pip setuptools wheel numpy
pip install --upgrade tfc

The above will install a binary TFC wheel. The developers have found that installing a source distribution leads to code that is slightly faster on some machines, as the code is compiled using potentially newer versions of compilers and swig. If you would like the source distribution, then you can use the following:

pip install tfc --no-binary tfc

Note that you may need to first install the system package dependencies listed in the Building from source section if they are not already installed.

Reference Documentation:

For tutorials on how to use this package as well as information about the tfc API, see the reference documentation.

Mathematical Documentation:

Any users interested in the process for developing constrained expressions, the mathematical theory behind TFC, and the application of TFC to differential equations should start with this journal article; note that the article is open access, so you can download it for free. The curious user can continue their study of the mathematical theory by visiting the TFC article repository on ResearchGate for a complete list of TFC publications with free downloadable PDFs. Furthermore, links to free downloadable versions of Hunter's and Carl's dissertations can be found in the READMEs of their respective folders in the examples directory. Finally, the TFC textbook is available for purchase.

Citing this repository:

The authors of this repsitory and the associated theory have gone to lengths to ensure that both are publicy available at no cost to the user. All that we ask in return is that if you use them, please add a reference to this GitHub and following journal article. Thank you.

@misc{tfc2023github,
    author = {Carl Leake and Hunter Johnston},
    title = {{TFC: A Functional Interpolation Framework}},
    url = {https://github.com/leakec/tfc},
    version = {1.0.12},
    year = {2024},
}
@article{TFC, 
    title={The Multivariate Theory of Functional Connections: Theory, Proofs, and Application in Partial Differential Equations}, 
    volume={8}, 
    ISSN={2227-7390}, 
    url={http://dx.doi.org/10.3390/math8081303}, 
    DOI={10.3390/math8081303},
    number={8}, 
    journal={Mathematics},
    publisher={MDPI AG},
    author={Leake, Carl and Johnston, Hunter and Mortari, Daniele}, 
    year={2020}, 
    month={Aug}, 
    pages={1303}
}

For developers:

Building from source:

  1. Create a dist directory in the main directory.
  2. Run python setup.py bdist_wheel from the main directory.
  3. Navigate to dist, and run pip3 install "wheel" where "wheel" is the name of the wheel created in the previous step.

Dependencies:

  • System Packages:
    • swig
    • graphviz
  • Python Packages:
    • matplotlib
    • jax
    • jaxlib
    • colorama
    • graphviz
    • yattag

Testing instructions:

  1. Navigate to the tests directory.
  2. Run py.test or python -m pytest. These serve as simple unit tests that test basic functionality of the code. These include tests for individual TFC functions, as well as full ODE and PDE tests.

Building Reference Documentation from Source:

If for some reason you want to build the reference documentation from source, you can do so using these two steps:

  1. Change into the docs directory.
  2. Run:
sphinx-build . _build/html

The code documentation will appear under _build/html and the main file is index.html. This file can also be accessed using the SphinxDocumentation.html symbolic link in the docs directory.

Dependencies:

  • System Packages:
    • graphviz
    • doxygen
    • python3-sphinx
  • Python Packages: see requirements.txt file in the docs directory.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tfc-1.0.12.tar.gz (66.6 kB view hashes)

Uploaded Source

Built Distributions

tfc-1.0.12-cp312-cp312-win_amd64.whl (139.8 kB view hashes)

Uploaded CPython 3.12 Windows x86-64

tfc-1.0.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (479.3 kB view hashes)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

tfc-1.0.12-cp312-cp312-macosx_11_0_arm64.whl (158.4 kB view hashes)

Uploaded CPython 3.12 macOS 11.0+ ARM64

tfc-1.0.12-cp312-cp312-macosx_10_9_x86_64.whl (169.7 kB view hashes)

Uploaded CPython 3.12 macOS 10.9+ x86-64

tfc-1.0.12-cp311-cp311-win_amd64.whl (139.4 kB view hashes)

Uploaded CPython 3.11 Windows x86-64

tfc-1.0.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (469.3 kB view hashes)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

tfc-1.0.12-cp311-cp311-macosx_11_0_arm64.whl (158.2 kB view hashes)

Uploaded CPython 3.11 macOS 11.0+ ARM64

tfc-1.0.12-cp311-cp311-macosx_10_9_x86_64.whl (168.8 kB view hashes)

Uploaded CPython 3.11 macOS 10.9+ x86-64

tfc-1.0.12-cp310-cp310-win_amd64.whl (139.4 kB view hashes)

Uploaded CPython 3.10 Windows x86-64

tfc-1.0.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (462.4 kB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

tfc-1.0.12-cp310-cp310-macosx_11_0_arm64.whl (158.2 kB view hashes)

Uploaded CPython 3.10 macOS 11.0+ ARM64

tfc-1.0.12-cp310-cp310-macosx_10_9_x86_64.whl (168.8 kB view hashes)

Uploaded CPython 3.10 macOS 10.9+ x86-64

tfc-1.0.12-cp39-cp39-win_amd64.whl (139.4 kB view hashes)

Uploaded CPython 3.9 Windows x86-64

tfc-1.0.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (462.6 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

tfc-1.0.12-cp39-cp39-macosx_11_0_arm64.whl (158.2 kB view hashes)

Uploaded CPython 3.9 macOS 11.0+ ARM64

tfc-1.0.12-cp39-cp39-macosx_10_9_x86_64.whl (168.8 kB view hashes)

Uploaded CPython 3.9 macOS 10.9+ x86-64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page