Skip to content

Commit

Permalink
🛫
Browse files Browse the repository at this point in the history
  • Loading branch information
rreusser committed Aug 6, 2023
1 parent 605c7c0 commit f5ff437
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion karman-trefftz-airfoil/bundle.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/src/karman-trefftz-airfoil/state.js
Original file line number Diff line number Diff line change
Expand Up @@ -277,10 +277,10 @@ module.exports = function () {
);
}),
streamAlpha: State.Checkbox(false, {label: 'streamlines'}),
alpha: State.Slider(15.0, {min: -45, max: 45, step: 0.1, label: 'angle of attack'}),
alpha: State.Slider(0, {min: -45, max: 45, step: 0.1, label: 'angle of attack'}),
circulation: State.Slider(0.0, {min: -10, max: 10, step: 0.01}),
kutta: State.Checkbox(true, {label: 'Kutta condition'}),
forces: State.Checkbox(true, {label: 'force distribution'}),
kutta: State.Checkbox(false, {label: 'Kutta condition'}),
forces: State.Checkbox(false, {label: 'force distribution'}),
cpAlpha: State.Checkbox(false, {label: 'pressure coeff.'}),
}, {
label: 'Aerodynamics',
Expand Down

0 comments on commit f5ff437

Please sign in to comment.