Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jalhyd
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
A compter du 1er avril, attention à vos pipelines :
Nouvelles limitations de Docker Hub
Show more breadcrumbs
Cassiopée
jalhyd
Commits
e45e7fbe
Commit
e45e7fbe
authored
5 years ago
by
David Dorchies
Browse files
Options
Downloads
Patches
Plain Diff
#105
Vannes levantes - Calculation tests OK
parent
809df1a5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
spec/structure/structure_vanlev.spec.ts
+54
-12
54 additions, 12 deletions
spec/structure/structure_vanlev.spec.ts
src/structure/structure_vanlev.ts
+1
-1
1 addition, 1 deletion
src/structure/structure_vanlev.ts
with
55 additions
and
13 deletions
spec/structure/structure_vanlev.spec.ts
+
54
−
12
View file @
e45e7fbe
import
{
RectangularStructureParams
}
from
"
../../src/structure/rectangular_structure_params
"
;
import
{
StructureVanLevLarinier
,
StructureVanLevParams
}
from
"
../../src/structure/structure_vanlev
"
;
import
{
StructureVanLevVillemonte
}
from
"
../../src/structure/structure_vanlev
"
;
import
{
MessageCode
}
from
"
../../src/util/message
"
;
function
getStructTest
(
bFente
:
boolean
=
false
):
StructureVanLevLarinier
|
StructureVanLevVillemonte
{
const
structPrm
=
new
StructureVanLevParams
(
0.773
,
73
,
75.090
,
74.86
,
0.6
,
0.4
,
0.217
,
73.5
,
74
);
if
(
bFente
)
{
return
new
StructureVanLevLarinier
(
structPrm
,
false
);
}
else
{
return
new
StructureVanLevVillemonte
(
structPrm
,
false
);
}
}
let
vlv
:
StructureVanLevVillemonte
;
describe
(
"
class StructureVanLevVillemonte
"
,
()
=>
{
beforeEach
(
()
=>
{
vlv
=
new
StructureVanLevVillemonte
(
new
StructureVanLevParams
(
0.773
,
73
,
75.090
,
74.86
,
0.6
,
0.4
,
0.217
,
73.5
,
74
)
,
false
);
});
it
(
"
Calc(Z1) should return 75.077 and extraResults.ZDV should be 73.95
"
,
()
=>
{
expect
(
getStructTest
().
Calc
(
"
Z1
"
).
vCalc
).
toBeCloseTo
(
75.077
,
3
);
expect
(
getStructTest
().
Calc
(
"
Z1
"
).
extraResults
.
ZDV
).
toBeCloseTo
(
73.95
,
2
);
expect
(
vlv
.
Calc
(
"
Z1
"
).
vCalc
).
toBeCloseTo
(
75.077
,
3
);
expect
(
vlv
.
Calc
(
"
Z1
"
).
extraResults
.
ZDV
).
toBeCloseTo
(
73.95
,
2
);
});
it
(
"
ZDV min bound Calc(Z1) should return 75.059 and extraResults.ZDV should be 73.9
"
,
()
=>
{
const
s
=
vlv
;
s
.
prms
.
maxZDV
.
v
=
73.90
;
const
r
=
s
.
Calc
(
"
Z1
"
);
expect
(
r
.
vCalc
).
toBeCloseTo
(
75.059
,
3
);
expect
(
r
.
extraResults
.
ZDV
).
toBeCloseTo
(
73.9
,
2
);
expect
(
r
.
log
.
messages
[
0
].
code
).
toBe
(
MessageCode
.
WARNING_VANLEV_ZDV_SUP_MAX
);
});
it
(
"
ZDV max bound Calc(Z1) should return 75.096 and extraResults.ZDV should be 74
"
,
()
=>
{
const
s
=
vlv
;
s
.
prms
.
minZDV
.
v
=
74
;
const
r
=
s
.
Calc
(
"
Z1
"
);
expect
(
r
.
vCalc
).
toBeCloseTo
(
75.096
,
3
);
expect
(
r
.
extraResults
.
ZDV
).
toBeCloseTo
(
74
,
2
);
expect
(
r
.
log
.
messages
[
0
].
code
).
toBe
(
MessageCode
.
WARNING_VANLEV_ZDV_INF_MIN
);
});
});
let
vll
:
StructureVanLevLarinier
;
describe
(
"
class StructureVanLevLarinier
"
,
()
=>
{
beforeEach
(
()
=>
{
vll
=
new
StructureVanLevLarinier
(
new
StructureVanLevParams
(
0.773
,
73
,
75.090
,
74.86
,
0.35
,
0.65
,
0.217
,
73.3
,
73.5
)
,
false
);
});
it
(
"
Calc(Z1) should return 75.077 and extraResults.ZDV should be 73.431
"
,
()
=>
{
expect
(
vll
.
Calc
(
"
Z1
"
).
vCalc
).
toBeCloseTo
(
75.077
,
3
);
expect
(
vll
.
Calc
(
"
Z1
"
).
extraResults
.
ZDV
).
toBeCloseTo
(
73.431
,
2
);
});
it
(
"
ZDV min bound Calc(Z1) should return 75.071 and extraResults.ZDV should be 73.4
"
,
()
=>
{
const
s
=
vll
;
s
.
prms
.
maxZDV
.
v
=
73.40
;
const
r
=
s
.
Calc
(
"
Z1
"
);
expect
(
r
.
vCalc
).
toBeCloseTo
(
75.071
,
3
);
expect
(
r
.
extraResults
.
ZDV
).
toBeCloseTo
(
73.4
,
2
);
expect
(
r
.
log
.
messages
[
0
].
code
).
toBe
(
MessageCode
.
WARNING_VANLEV_ZDV_SUP_MAX
);
});
it
(
"
ZDV max bound Calc(Z1) should return 75.092 and extraResults.ZDV should be 73.5
"
,
()
=>
{
const
s
=
vll
;
s
.
prms
.
minZDV
.
v
=
73.5
;
const
r
=
s
.
Calc
(
"
Z1
"
);
expect
(
r
.
vCalc
).
toBeCloseTo
(
75.092
,
3
);
expect
(
r
.
extraResults
.
ZDV
).
toBeCloseTo
(
73.5
,
2
);
expect
(
r
.
log
.
messages
[
0
].
code
).
toBe
(
MessageCode
.
WARNING_VANLEV_ZDV_INF_MIN
);
});
});
This diff is collapsed.
Click to expand it.
src/structure/structure_vanlev.ts
+
1
−
1
View file @
e45e7fbe
...
...
@@ -68,7 +68,7 @@ function CalcVanneLevante(
const
r2
:
Result
=
s
.
superCalc
(
"
Z1
"
,
rInit
);
r2
.
extraResults
.
ZDV
=
s
.
prms
.
ZDV
.
v
;
if
(
m
!==
undefined
)
{
r2
.
addMessage
(
m
);
r2
.
resultElements
[
0
].
addMessage
(
m
);
}
return
r2
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment