CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Programming & Development

Coning motion of an aircraft

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   March 10, 2020, 07:05
Default Coning motion of an aircraft
  #1
Senior Member
 
shereez234's Avatar
 
M Sereez
Join Date: Jan 2014
Location: England
Posts: 352
Blog Entries: 1
Rep Power: 13
shereez234 is on a distinguished road
Dear Foamers;


In solid body motion, rotating motion I am trying to create a coning motion of an aircraft.


There are three omegas ,
Code:
\omega_x, \omega_y, \omega_z
The rotation happens around X and Y axis with respect to corresponding omegas.


So far I what I have done :
Code:
 scalar t = time_.value();

    // Rotation around axis
    scalar angleX = omegaX_->integrate(0, t);
   scalar angleY = omegaY_->integrate(0, t);
   scalar angleZ =omegaZ_->integrate(0, t);

    quaternion R1(axisX_, angleX);
    quaternion R2(axisY_, angleY);
    quaternion R3(axisZ_, angleZ);


   quaternion R = (R1*R2*R3);
septernion TR(septernion(-origin_)*(R)*septernion(origin_));
I am still not getting pure conical motion. any insights please?
shereez234 is offline   Reply With Quote

Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
sliding mesh problem in CFX Saima CFX 46 September 11, 2021 07:38
How to use "translation" in solidBodyMotionFunction in OpenFOAM rupesh_w OpenFOAM Running, Solving & CFD 5 August 16, 2016 04:27
External management of solid motion (using dynamicmesh) maxou1993 Main CFD Forum 0 July 28, 2015 11:37
Moving mesh Niklas Wikstrom (Wikstrom) OpenFOAM Running, Solving & CFD 122 June 15, 2014 06:20
Simulation of the rotational motion of the aircraft Vladimir_K Fidelity CFD 0 September 17, 2012 07:59


All times are GMT -4. The time now is 09:43.