diff --git a/README.md b/README.md index 4c090acf..30d34717 100644 --- a/README.md +++ b/README.md @@ -223,9 +223,9 @@ examples of the output you can expect to receive from each of them. Here are the requirements necessary to run Ptera Software: -* matplotlib >= 3.7.1, < 4.0.0 -* numpy >= 1.24.3, < 1.25.0 -* pyvista >= 0.39.1, < 1.0.0 +* matplotlib >= 3.7.2, < 4.0.0 +* numpy >= 1.24.4, < 1.25.0 +* pyvista >= 0.40.0, < 1.0.0 * scipy >= 1.10.1, < 2.0.0 * numba >= 0.57.1, < 1.0.0 * cmocean >= 3.0.3, < 4.0.0 @@ -240,7 +240,7 @@ Additionally, these packages are useful for continued development of the softwar * pre-commit >= 3.3.3, < 4.0.0 * build >= 0.10.0, < 1.0.0 * twine >= 4.0.2, < 5.0.0 -* PyInstaller >= 5.12.0, < 6.0.0 +* PyInstaller >= 5.13.0, < 6.0.0 * setuptools >= 68.0.0, < 69.0.0 * wheel >= 0.40.0, < 1.0.0 diff --git a/make_installer.iss b/make_installer.iss index 0a40b0ac..a9771bf8 100644 --- a/make_installer.iss +++ b/make_installer.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "PteraSoftware" -#define MyAppVersion "3.0.0" +#define MyAppVersion "3.0.1" #define MyAppPublisher "CamUrban" #define MyAppURL "https://github.com/camUrban/PteraSoftware" #define MyAppExeName "PteraSoftware.exe" diff --git a/pterasoftware/output.py b/pterasoftware/output.py index d10aeccc..aa2c911c 100644 --- a/pterasoftware/output.py +++ b/pterasoftware/output.py @@ -946,13 +946,13 @@ def print_unsteady_results(unsteady_solver): This is the solver object with the results to be printed. :return: None """ - forces = unsteady_solver.unsteady_problem.final_total_near_field_forces_wind_axes - moments = unsteady_solver.unsteady_problem.final_total_near_field_moments_wind_axes + forces = unsteady_solver.unsteady_problem.final_mean_near_field_forces_wind_axes + moments = unsteady_solver.unsteady_problem.final_mean_near_field_moments_wind_axes force_coefficients = ( - unsteady_solver.unsteady_problem.final_total_near_field_force_coefficients_wind_axes + unsteady_solver.unsteady_problem.final_mean_near_field_force_coefficients_wind_axes ) moment_coefficients = ( - unsteady_solver.unsteady_problem.final_total_near_field_moment_coefficients_wind_axes + unsteady_solver.unsteady_problem.final_mean_near_field_moment_coefficients_wind_axes ) # For each airplane object, calculate and print the average force, moment, diff --git a/requirements.txt b/requirements.txt index 11f76044..d5f583ec 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ -matplotlib >= 3.7.1, < 4.0.0 -numpy >= 1.24.3, < 1.25.0 -pyvista >= 0.39.1, < 1.0.0 +matplotlib >= 3.7.2, < 4.0.0 +numpy >= 1.24.4, < 1.25.0 +pyvista >= 0.40.0, < 1.0.0 scipy >= 1.10.1, < 2.0.0 numba >= 0.57.1, < 1.0.0 cmocean >= 3.0.3, < 4.0.0 diff --git a/requirements_ci.txt b/requirements_ci.txt index 1531ae55..0e4d469c 100644 --- a/requirements_ci.txt +++ b/requirements_ci.txt @@ -1,10 +1,10 @@ -matplotlib >= 3.7.1, < 4.0.0 -numpy >= 1.24.3, < 1.25.0 -pyvista >= 0.39.1, < 1.0.0 +matplotlib >= 3.7.2, < 4.0.0 +numpy >= 1.24.4, < 1.25.0 +pyvista >= 0.40.0, < 1.0.0 scipy >= 1.10.1, < 2.0.0 numba >= 0.57.1, < 1.0.0 cmocean >= 3.0.3, < 4.0.0 tqdm >= 4.65.0, < 5.0.0 webp >= 0.1.6, < 1.0.0 codecov >= 2.1.13, < 3.0.0 -urllib3 >= 1.26.16, < 2.0.0 \ No newline at end of file +urllib3 >= 1.26.16, < 2.0.0 \ No newline at end of file diff --git a/requirements_dev.txt b/requirements_dev.txt index 7b4dd89c..180fb34b 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -3,6 +3,6 @@ black >= 23.3.0, < 24.0.0 pre-commit >= 3.3.3, < 4.0.0 build >= 0.10.0, < 1.0.0 twine >= 4.0.2, < 5.0.0 -PyInstaller >= 5.12.0, < 6.0.0 +PyInstaller >= 5.13.0, < 6.0.0 setuptools >= 68.0.0, < 69.0.0 wheel >= 0.40.0, < 1.0.0 \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index dc983939..9a4383f6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = PteraSoftware -version = 3.0.0 +version = 3.0.1 author = Cameron Urban author_email = camerongurban@gmail.com license = MIT @@ -47,9 +47,9 @@ packages = include_package_data = True python_requires = >= 3.8.0, < 3.9.0 install_requires = - matplotlib >= 3.7.1, < 4.0.0 - numpy >= 1.24.3, < 1.25.0 - pyvista >= 0.39.1, < 1.0.0 + matplotlib >= 3.7.2, < 4.0.0 + numpy >= 1.24.4, < 1.25.0 + pyvista >= 0.40.0, < 1.0.0 scipy >= 1.10.1, < 2.0.0 numba >= 0.57.1, < 1.0.0 cmocean >= 3.0.3, < 4.0.0