View Single Post
Old 07-27-2003, 06:44 PM   #8 (permalink)
kel
WARNING: FLAMMABLE
 
Location: Ask Acetylene
A realistic simulation like the one lockheed would use

Would take a completely different approach, it would simulate the displacement and flow of currents of air over each individual surface. You can treat air as a vector and sorta ray trace it, or you can create a partical system with actual air particles with mass and velocity and implement a concept of high and low pressure. Equations of orientation and position don't even enter into the picture because the particle system "knows" by it's very nature how to translate the helicopter. The lockheed approach requires a supercomputer :-P. I just want to create a believable simulation, I don't care about the simulation being accurate, just believable. My question was how to phrase the problem as a simple mathematical system. It's very doable with the right background. And it's mindless to implement in code once someonce formalizes it into a set of functions.



At every point in time t I need to calculate the position and orientation of the helicopter based on a few dependent variables, namely, rotor speed, rudder speed (the rudder is actually a second rotor, the rudder pedals slow down and speed it it up), and rotor angle. Those are the only dependent variables I want to start out with. This is mostly some complex linear algebra which I am studying right now for this purpose, and some multi-variable calculus. Undergrad level ;-)

The equations that calculate the position and orientation at time t are constant for every set of dependent variables. So everytime the pilot modifies rudder, rotor, or collective the constants in the equations are recalculated. I just want the equations and the method to calculate the constants. Simulating various effects and nuances of h/c is pretty easy by simply tweaking various cases once you have a system like this.

The problem is that all the existing engineering texts just tell the engineer how to predict performance based on certain phsyical features and not how to actually flat out calculate the whole shebang. That's left to the programmer with the supercomputer :-P
__________________
"It better be funny"
kel is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360