span-wise drag/lift forces of cylinder

SR Description:   Dear Sir/Madam,

I am trying to simulate a 3d finite immersed cylinder. I am interested the variation of drag/lift forces along the span-wise direction (the length direction) of the cylinder. The theory guide says that the force on the wall zones are calculated, thus I only get the mean drag/lift forces of the whole cylinder. Is there a way to separate the drag/lift forces along the length (z direction) direction?

ps: an experimental snap is attached.

Technical Details:

Regarding your query, I think one way to compute drag/lift is by creating custom field functions.

Create a Custom field function (CFF) for lift, with the formula

lift = pressure * Y-face area + Y-wall shear stress * face-area-magnitude.

Lift=

For drag force, I guess its simply skin_friction_coefficient*area normal to face.

Skin_friction_coefficient*x-face_area

The second approach is to write a UDF using DEFINE_ON_DEMAND macro. Loop over all the faces and get Drag and lift forces using their standard definitions.

Reply 2

The best way to do what you are requesting is to split the cylinder into strips and integrate the forces over each strip individually. This can be explicitly done at the geometry stage and meshed in strips or you can also create the strips using Iso-clip option to create a number of faces out of a single face and calculate the drag directly on those.

The last approach I mentioned by creation of clipped surfaces would require that you use a CFF to recalculate the forces (as Vivek suggested) as user defined surfaces are not by default available in the force reports panel.

The other option would be to separate the walls physically by using adaption registers to mark cells within certain ranges in the Z direction so you would have volumetric marks which would define these strips you require. The second step is then to use Mesh -> Separate -> Faces -> By Mark to separate the cylindrical wall into your strips. This would allow you to use the drag/lift reports (as would explicitly meshing the cylinder in strips).

span-wise drag/lift forces of cylinder的更多相关文章

  1. AngularJs自定义指令详解(5) - link

    在指令中操作DOM,我们需要link参数,这参数要求声明一个函数,称之为链接函数. 写法: link: function(scope, element, attrs) { // 在这里操作DOM} 如 ...

  2. jquery插件之拖拽改变元素大小

    该插件乃本博客作者所写,目的在于提升作者的js能力,也给一些js菜鸟在使用插件时提供一些便利,老鸟就悠然地飞过吧. 此插件旨在实现目前较为流行的拖拽改变元素大小的效果,您可以根据自己的实际需求来设置被 ...

  3. AngularJS开发指南2:AngularJS初始化过程

    自动初始化 请将ng-app指令放到你应用的标签节点中, 如果你想要AngularJS自动执行整个<html>程序就把它放在 <html> 标签中.比如:<html ng ...

  4. angular Creating a Directive that Adds Event Listeners

    <span my-draggable>Drag ME</span> angular.module('dragModule', []) .directive('myDraggab ...

  5. jquery_dialog实现效果

    jquery_dialog实现效果 jquery_dialog.js <!-- /******************************************************** ...

  6. 用telnet和php的curl库测试http

    一.telnet测试http telnet简介     Telnet协议是TCP/IP协议族的其中之一,是Internet远端登录服务的标准协议和主要方式,常用于网页服务器的远端控制,可供使用者在本地 ...

  7. angularJS Directive学习

    Directive 指令 直接上实例 index.html <!doctype html> <html ng-app="drag"> <head> ...

  8. AngularJS -- 指令(创建自定义指令)

    点击查看AngularJS系列目录 转载请注明出处:http://www.cnblogs.com/leosx/   什么是指令 注:本指南是针对已经熟悉AngularJS基础知识的开发人员.如果你才刚 ...

  9. AngularJS -- HTML 编译器

    点击查看AngularJS系列目录 转载请注明出处:http://www.cnblogs.com/leosx/ HTML Compiler Overview(HTML 编译器 概要) AngularJ ...

随机推荐

  1. 【爬坑系列】之解读kubernetes的认证原理&实践

    对于访问kube-apiserver模块的请求来说,如果是使用http协议,则会顺利进入模块内部得到自己想要的:但是如果是用的是https,则能否进入模块内部获得想要的资源,他会首先要进行https自 ...

  2. Git客户端使用教程

    课程地址 <版本控制入门 – 搬进 Github> 笔记参考 <搬进 Github> Git客户端的使用 Git for windows下载 新建一个仓库tata,使用subl ...

  3. [转]Using the Interop Activity in a .NET Framework 4 Workflow

    本文转自:http://msdn.microsoft.com/en-us/library/ee264174(v=vs.100).aspx This topic applies to Windows W ...

  4. Windowsforms 中对文件操作

    文件及文件夹操作: 引用命名空间:using system .IO; 1.File类: 创建:File.Create(路径);——返回FileStream FileStream fs = File.C ...

  5. SQL Case 语句的使用

    -----简单case 使用 select 学号,姓名, case 专业 when '金融系' then '1' when '材料成型及控制工程' then '2' else '3' end from ...

  6. pandas之groupby分组与pivot_table透视表

    zhuanzi: https://blog.csdn.net/qq_33689414/article/details/78973267 pandas之groupby分组与pivot_table透视表 ...

  7. rar在linux下安装更新

    1.下载:根据主机系统下载合适的版本,当前64为centos系统演示下载: wget http://www.rarlab.com/rar/rarlinux-x64-5.3.0.tar.gz 2.解压安 ...

  8. 【C++】模板简述(二):函数模板

    我们上文讲了,模板的引入,我们发现在某种特殊的情况下,必须得通过模板才能完美的解决问题. 本文就来简述一下函数模板的基本使用. 一.函数模板格式 template<typename Param1 ...

  9. raw cannot be resolved or is not a field解决办法

    解决raw文件夹问题 查看左侧项目/res文件夹下是否有raw文件夹,(一定是放到res文件夹下,raw在项目开始创建时候不会自动创建,所以要自己创建)

  10. 理解 call, apply 的用法

    callcall() 方法使用一个指定的 this 值和单独给出的一个或多个参数来调用一个函数. function list() { return Array.prototype.slice.call ...