From bd207f2cc8332ffa1710a1eeaa20f83a9f976191 Mon Sep 17 00:00:00 2001 From: Kyle Beggs Date: Tue, 15 Sep 2020 19:17:37 -0400 Subject: [PATCH] updated README and version - because minor release --- README.md | 7 ++++++- pod_rbf/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fb56bff..c803263 100755 --- a/README.md +++ b/README.md @@ -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 diff --git a/pod_rbf/__init__.py b/pod_rbf/__init__.py index 3642f2a..bddac97 100644 --- a/pod_rbf/__init__.py +++ b/pod_rbf/__init__.py @@ -1,3 +1,3 @@ from .pod_rbf import * -__version__ = "1.0.3" +__version__ = "1.1.0" diff --git a/setup.py b/setup.py index cd36248..d9f3ddb 100644 --- a/setup.py +++ b/setup.py @@ -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="beggskw@gmail.com", description="Tool to perform interpolation using the Proper Orthogonal Decomposition - Radial Basis Function (POD-RBF) method.",