Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
uses: actions/checkout@v5

- name: Set up pixi
uses: prefix-dev/setup-pixi@v0.9.2
uses: prefix-dev/setup-pixi@v0.9.3
with:
environments: dashboard

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pixi_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
uses: actions/checkout@v5

- name: Set up pixi
uses: prefix-dev/setup-pixi@v0.9.2
uses: prefix-dev/setup-pixi@v0.9.3
with:
environments: default

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/run-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ jobs:
{
"MD013": false,
"MD033": false,
"MD034": false
"MD034": false,
"MD041": false
}
EOF
- name: Lint markdown files (markdownlint)
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# FANS Changelog

## v0.6.0

- Introduce MaterialManager abstraction class to handle multiple material models within the microstructure [#115](https://github.com/DataAnalyticsEngineering/FANS/pull/115)
- Bugfix: `homogenized_tangent` was computed but not written to HDF5 output [#113](https://github.com/DataAnalyticsEngineering/FANS/pull/113)

## v0.5.2

- Bugfix: Fix bad initial guess for time steps > 0 [#109](https://github.com/DataAnalyticsEngineering/FANS/pull/109)
Expand Down
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.21)
# ##############################################################################

project(FANS
VERSION 0.5.2
VERSION 0.6.0
LANGUAGES C CXX
)

Expand Down Expand Up @@ -151,6 +151,7 @@ target_include_directories(FANS_FANS PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SO
set_property(TARGET FANS_FANS PROPERTY PUBLIC_HEADER
include/general.h
include/matmodel.h
include/MaterialManager.h
include/reader.h
include/solverCG.h
include/solverFP.h
Expand Down
22 changes: 3 additions & 19 deletions FANS_Dashboard/FANS_Dashboard.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,6 @@
"9. [Summary](#summary)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Prerequisites\n",
"To start using the FANS Dashboard, ensure that the necessary Python packages and modules are installed. The required imports in your Jupyter Notebook should include:\n",
"- `numpy`\n",
"- `h5py`\n",
"- `plotly`\n",
"- `collections`\n",
"- `argparse`\n",
"- `lxml`\n",
"- `re`\n",
"- `nbformat`"
]
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down Expand Up @@ -98,7 +82,7 @@
"outputs": [],
"source": [
"# Example usage\n",
"file_path = '../test/test_results.h5'\n",
"file_path = '../test/output/test_J2Plasticity.h5'\n",
"\n",
"# Extract hierarchy information from the file\n",
"hierarchy = identify_hierarchy(file_path)\n",
Expand Down Expand Up @@ -323,7 +307,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "default",
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
Expand All @@ -337,7 +321,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.13.3"
"version": "3.13.7"
}
},
"nbformat": 4,
Expand Down
Loading
Loading