From 6afc17a763039c538f973759b7f7107822230cba Mon Sep 17 00:00:00 2001 From: janodesbois Date: Sun, 17 Nov 2013 17:26:56 +0100 Subject: [PATCH] static.cxx msvc bug correction. --- src/Systems/static.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Systems/static.cxx b/src/Systems/static.cxx index f8510fe61..a6e14bb68 100644 --- a/src/Systems/static.cxx +++ b/src/Systems/static.cxx @@ -93,7 +93,7 @@ StaticSystem::update (double dt) proj_factor = sqrt( 1.0 - cos(beta)*cos(beta) * cos(alpha)*cos(alpha) ); } - if ( (_type ==1) or (_type == 2) ) { + if ( (_type ==1) || (_type == 2) ) { mach = _mach_node->getDoubleValue(); pt = p_new * pow(1 + 0.2 * mach*mach*proj_factor*proj_factor, 3.5 ); //total pressure perpendicular to static port (=perpendicular to body x-axis) qc_part = (pt - p_new) * _error_factor ; //part of impact pressure to be added to static pressure (due to sideslip) -- 2.39.5