Skip to content

Commit

Permalink
edit changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
JTHesse committed Oct 8, 2024
1 parent 9a39c5e commit 3e60e53
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,23 @@ SPDX-License-Identifier: BSD-3-Clause

All notable changes to this project will be documented in this file.

## [1.2.4] - 2024-10-08

### Added

- Include lambda rotation in Thermal flow #134
- Int support for solver params

### Fixed

- Many performance improvements
- Fix high abaqus mesh memory usage
- Fix OutOfMemory MPI Error

### Changed

- Removed view from get_field method and streamlined it

## [1.2.3] - 2024-09-13

### Added
Expand Down Expand Up @@ -159,7 +176,6 @@ All notable changes to this project will be documented in this file.
- MPI Issue
- Logging


## [1.0.7] - 2024-03-12

### Added
Expand Down
12 changes: 11 additions & 1 deletion docs/src/lib/models_functions.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
# Models - Functions

## Index

```@index
Pages = ["models_functions.md"]
```

```@meta
CurrentModule = PeriLab.Solver.Model_Factory
```

## Models

```@docs
compute_models
get_block_model_definition
Expand All @@ -20,7 +23,9 @@ set_heat_capacity
```@meta
CurrentModule = PeriLab.Solver.Model_Factory.Additive
```

## Additive

```@docs
Set_modules.Additive_template.additive_name
Set_modules.Additive_template.compute_model
Expand All @@ -29,7 +34,9 @@ Set_modules.Additive_template.compute_model
```@meta
CurrentModule = PeriLab.Solver.Model_Factory.Damage
```

## Damage

```@docs
Set_modules.Damage_template.damage_name
Set_modules.Damage_template.compute_model
Expand All @@ -43,7 +50,9 @@ Set_modules.Critical_Energy_Model.get_quad_horizon
```@meta
CurrentModule = PeriLab.Solver.Model_Factory.Material
```

## Material

```@docs
Set_modules.Material_template.init_model
Set_modules.Material_template.material_name
Expand Down Expand Up @@ -77,11 +86,12 @@ Set_modules.Correspondence.Global_zero_energy_control.rotate_fourth_order_tensor
```@meta
CurrentModule = PeriLab.Solver.Model_Factory.Thermal
```

## Thermal

```@docs
Set_modules.Thermal_template.thermal_model_name
Set_modules.Thermal_template.compute_model
distribute_heat_flows
Thermal.Set_modules.Heat_transfer.calculate_specific_volume
Thermal.Set_modules.Thermal_expansion.thermal_deformation
Thermal.Set_modules.Thermal_Flow.compute_heat_flow_state_correspondence
Expand Down

2 comments on commit 3e60e53

@JTHesse
Copy link
Collaborator Author

@JTHesse JTHesse commented on 3e60e53 Oct 8, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/116828

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.2.4 -m "<description of version>" 3e60e53cc18a0e6d9815fd7378979b3c2eceed9c
git push origin v1.2.4

Please sign in to comment.