1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/fclasses/bug30800
abv d430d12909 0030800: Foundation Classes, UnitsAPI - poise dynamic viscosity unit is not defined correctly
Definition of Poise unit corrected.

Added test bugs fclasses bug30800
2020-10-03 16:06:35 +03:00

15 lines
646 B
Plaintext

puts "# =========================================================================================="
puts "# 0030800: Foundation Classes, UnitsAPI - poise dynamic viscosity unit is not defined correctly"
puts "# =========================================================================================="
puts ""
puts "Check that 1 Poise is 0.1 Pa*s"
if { [regexp {result: ([0-9.e+-]+)} [unitconvtoSI 1. Po] res poise_si] } {
checkreal "Poise in SI (Pa*s)" $poise_si 0.1 1e-6 1e-6
} else {
puts "Error: cannot convert Poise to SI"
}
puts "Check that 1 Poise is 0.001 kg/cm/s"
checkreal "Poise in kg/cm/s" [unit 1. Po kg/cm/s] 0.001 1e-6 1e-6