Skip to content

Commit

Permalink
updated README and version - because minor release
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Beggs committed Sep 15, 2020
1 parent 04ad531 commit bd207f2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
# POD-RBF

![Re-450](examples/lid-driven-cavity/results-re-450.png)

A Python package for building a Reduced Order Model (ROM) from high-dimensional data using a Proper
Orthogonal Decomposition - Radial Basis Function (POD-RBF) Network.

Given a 'snapshot' matrix of the data points with varying parameters, this code contains functions
to find the truncated POD basis and interpolate using a RBF network for new parameters.

![Re-450](examples/lid-driven-cavity/results-re-450.png)
Features:

* Shape parameter optimization for the Radial basis Functions (RBFs)
* Algorithm switching based on memory requirements (eigenvalue decomposition vs. SVD)

## Installation

Expand Down
2 changes: 1 addition & 1 deletion pod_rbf/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .pod_rbf import *

__version__ = "1.0.3"
__version__ = "1.1.0"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="pod_rbf", # Replace with your own username
version="1.0.3",
version="1.1.0",
author="Kyle Beggs",
author_email="[email protected]",
description="Tool to perform interpolation using the Proper Orthogonal Decomposition - Radial Basis Function (POD-RBF) method.",
Expand Down

0 comments on commit bd207f2

Please sign in to comment.