Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Institute of Technical Acoustics (ITA)
toolbox
Commits
cb62b607
Commit
cb62b607
authored
Apr 23, 2018
by
Markus Mueller-Trapet
Browse files
bugfix (not greater vs less than)
parent
99b927ab
Changes
2
Hide whitespace changes
Inline
Side-by-side
applications/RoomAcoustics/BuildingAcoustics/ita_soundInsulationIndexAirborne.m
View file @
cb62b607
...
...
@@ -69,7 +69,7 @@ delta = max(0,refCurve + soundReductionIndex - soundReduction);
counter
=
0
;
% stopping criterion
% shift reference curve until limits are reached
while
sum
(
delta
)
<
refSurf
&&
all
(
delta
<=
deficiencyLimit
)
&&
counter
<
1e3
while
sum
(
delta
)
<
=
refSurf
&&
all
(
delta
<=
deficiencyLimit
)
&&
counter
<
1e3
soundReductionIndex
=
soundReductionIndex
+
dbStep
;
delta
=
max
(
0
,
refCurve
+
soundReductionIndex
-
soundReduction
);
counter
=
counter
+
1
;
...
...
applications/RoomAcoustics/BuildingAcoustics/ita_soundInsulationIndexImpact.m
View file @
cb62b607
...
...
@@ -65,7 +65,7 @@ delta = max(0,NISPL - (refCurve + impactInsulationClass));
counter
=
0
;
% stopping criterion
% shift reference curve until limits are reached
while
sum
(
delta
)
<
refSurf
&&
all
(
delta
<=
deficiencyLimit
)
&&
counter
<
1e3
while
sum
(
delta
)
<
=
refSurf
&&
all
(
delta
<=
deficiencyLimit
)
&&
counter
<
1e3
impactInsulationClass
=
impactInsulationClass
-
dbStep
;
delta
=
max
(
0
,
NISPL
-
(
refCurve
+
impactInsulationClass
));
counter
=
counter
+
1
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment