Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
52c823a
Tutorial snippet updates
Aug 22, 2024
84cb065
Tutorial images and text changes
Aug 27, 2024
df15765
Tutorial snippets in Getting started
Aug 29, 2024
af6da1a
Tutorial snippets in Modeling the human body
Sep 3, 2024
6bc9a6a
Created whole folders for snippet files
melund Sep 6, 2024
8890a32
Update tests
melund Sep 6, 2024
118df15
Used cmd.exe to create lib in ci test
melund Sep 6, 2024
894e204
Merge commit '118df158da292f4b7f185ff8d0172692779da1e9'
Sep 6, 2024
1ffaf07
Merge branch 'TutorialUpdates2' of https://github.com/AnyBody/tutoria…
Sep 6, 2024
2183a40
Updates to tutorial Modeling the Human Body. New folder structure
Sep 11, 2024
bddb3ca
Final updates to the first 4 tutorials.
Sep 13, 2024
951b153
Update file paths in lesson1.md
Sep 13, 2024
d2dcdd0
rename1
Sep 13, 2024
bae2a0a
rename2
Sep 13, 2024
11e4537
Tutorial updates - file structure, images and more
Sep 16, 2024
fa547b9
Update file path in lesson2.md
Sep 16, 2024
d511125
Different updates to the first few tutorials
Sep 20, 2024
b157b32
Text and general structure updates to the first few tutorials
Sep 25, 2024
46c3ef3
Merge remote-tracking branch 'origin/master' into TutorialUpdates2
Sep 25, 2024
a95c9c3
Updates of code snippets, images and other stuff in A Study of Studies
Sep 27, 2024
e3cb1ac
Mainly changes to Parameter Studies and Optimization Tutorial. Many f…
Oct 23, 2024
fb17e77
Setup of making Python optimization tutorial in Jupyter notebook and …
Nov 1, 2024
7e4ad60
Small extra update to Python Optimization Tutorial
Nov 1, 2024
1d0e9c0
Final changes in Python optimization tutorial - made download files a…
Nov 6, 2024
cfdfd9f
One small extra update to Python optimization Study
Nov 8, 2024
d715a7d
Merge commit '8962d385432ecb6718391abfaa5a3dcc36484014' into Tutorial…
Nov 13, 2024
a8acb4e
Update instructions for installing python
melund Nov 18, 2024
8679e31
Fixed download link
melund Nov 18, 2024
086dec1
Fix download link
melund Nov 18, 2024
6dff453
Add exclusion pattern for Jupyter Notebook execution in conf.py
melund Nov 19, 2024
630abc2
Try with request header for linkcheck
melund Dec 11, 2024
3572338
Add exclusion for Mathworks link in linkcheck_ignore
melund Dec 12, 2024
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
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion Parameter_studies_and_optimization/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ to obtain a desired model behavior.
Introduction <intro>
lesson1
lesson2
lesson3
lesson3/lesson3
```
2 changes: 2 additions & 0 deletions Parameter_studies_and_optimization/lesson1.md
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,8 @@ is that this bicycle model has a predefined ankle angle variation
whereas a real human can compensate for a higher seat by letting the
ankle operate in a more plantar-flexed position.

### Calculating the metabolism of the muscles with integrals

Before we finish this section, let us take a look at a particularly
important feature of AnyScript mathematics: The ability to compute
integral properties. AnyBody has a simple way of approximating the
Expand Down
2 changes: 1 addition & 1 deletion Parameter_studies_and_optimization/lesson2.md
Original file line number Diff line number Diff line change
Expand Up @@ -399,6 +399,6 @@ picture below:

This completes the introduction to optimization studies.

In {doc}`lesson 3 <lesson3>` we will look at how to use external (3rd. party) optimizers with
In {doc}`lesson 3 <lesson3/lesson3>` we will look at how to use external (3rd. party) optimizers with
AnyBody. In particular we will show how to use the Python programming language to run the
same optimizations as we have done in this Tutorial.
274 changes: 0 additions & 274 deletions Parameter_studies_and_optimization/lesson3.md

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
#ifnpathexists "../libdef.any"
#include "<ANYBODY_PATH_INSTALLDIR>/AMMR/libdef.any"
#endif
#include "libdef.any"

/**2-D bicyle model.
Although this model can be rotated in 3-D space it really is just a saggital
Expand Down Expand Up @@ -105,7 +103,7 @@ Main = {
};
AnyDesVar SaddlePos = {
Val = Main.BikeParameters.SaddlePos;
Min = -0.22 /*-0.03*/;
Min = -0.20 /*-0.03*/;
Max = -0.05;
};
AnyDesMeasure MaxAct = {
Expand All @@ -129,7 +127,7 @@ Main = {
};
AnyDesVar SaddlePos = {
Val = Main.BikeParameters.SaddlePos;
Min = -0.22 /*-0.03*/;
Min = -0.20 /*-0.03*/;
Max = -0.05;
};
AnyDesMeasure Metab = {
Expand Down
Loading
Loading