Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Add switch for excluding thoracic support in full body bike model #973

Merged
merged 3 commits into from
Jun 27, 2024
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
3 changes: 3 additions & 0 deletions Application/Examples/BikeModel/Model/JointsAndDrivers.any
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ AnyFolder &JntVel=..Mannequin.PostureVel;
AnyKinMeasure& Left = Main.HumanModel.BodyModel.Interface.Left.SubTalarEversion;
};

#if BM_ARM_RIGHT != ON & BM_ARM_LEFT != ON

/// Support of the upper body to compensate for lack of arms resting on the handlebar
AnyReacForce Thoraxsupport = {
AnyKinLinear lin = {
Expand All @@ -21,6 +23,7 @@ AnyReacForce Thoraxsupport = {
};
};

#endif

Main.HumanModel.BodyModel.Trunk.SegmentsLumbar.PelvisSeg =
{
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
% A rendered version of the CHANGELOG is avaible here:
% https://anyscript.org/ammr/beta/changelog.html

(ammr-3.0.4-changelog)=
## AMMR 3.0.4 (2024-xx-xx)

### 🩹 Fixed:
* Fixed an issue in the {ref}`Bike Model example <example_bikemodel>` that included thoracic support
in the full body model also.

(ammr-3.0.3-changelog)=
## AMMR 3.0.3 (2024-06-10)
[![Zenodo link](https://zenodo.org/badge/DOI/10.5281/zenodo.11191711.svg)](https://doi.org/10.5281/zenodo.11191711)
Expand Down
4 changes: 2 additions & 2 deletions Docs/Applications/Sports/BikeModel.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ gallery_image: "/Applications/images/BikeModel-FullBody.webp"
---

(sphx_glr_auto_examples_Sports_plot_BikeModel.py)=

(example_bikemodel)=
# Bike Model

````{sidebar} **Example**
<img src="/Applications/images/BikeModel.webp" width="70%" align="center">
<img src="/Applications/images/BikeModel-FullBody.webp" width="70%" align="center">
````


Expand Down