span-wise drag/lift forces of cylinder
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的更多相关文章
- AngularJs自定义指令详解(5) - link
在指令中操作DOM,我们需要link参数,这参数要求声明一个函数,称之为链接函数. 写法: link: function(scope, element, attrs) { // 在这里操作DOM} 如 ...
- jquery插件之拖拽改变元素大小
该插件乃本博客作者所写,目的在于提升作者的js能力,也给一些js菜鸟在使用插件时提供一些便利,老鸟就悠然地飞过吧. 此插件旨在实现目前较为流行的拖拽改变元素大小的效果,您可以根据自己的实际需求来设置被 ...
- AngularJS开发指南2:AngularJS初始化过程
自动初始化 请将ng-app指令放到你应用的标签节点中, 如果你想要AngularJS自动执行整个<html>程序就把它放在 <html> 标签中.比如:<html ng ...
- angular Creating a Directive that Adds Event Listeners
<span my-draggable>Drag ME</span> angular.module('dragModule', []) .directive('myDraggab ...
- jquery_dialog实现效果
jquery_dialog实现效果 jquery_dialog.js <!-- /******************************************************** ...
- 用telnet和php的curl库测试http
一.telnet测试http telnet简介 Telnet协议是TCP/IP协议族的其中之一,是Internet远端登录服务的标准协议和主要方式,常用于网页服务器的远端控制,可供使用者在本地 ...
- angularJS Directive学习
Directive 指令 直接上实例 index.html <!doctype html> <html ng-app="drag"> <head> ...
- AngularJS -- 指令(创建自定义指令)
点击查看AngularJS系列目录 转载请注明出处:http://www.cnblogs.com/leosx/ 什么是指令 注:本指南是针对已经熟悉AngularJS基础知识的开发人员.如果你才刚 ...
- AngularJS -- HTML 编译器
点击查看AngularJS系列目录 转载请注明出处:http://www.cnblogs.com/leosx/ HTML Compiler Overview(HTML 编译器 概要) AngularJ ...
随机推荐
- centos7静态网络配置
centos7静态网络配置 cd /etc/sysconfig/network-scripts 找到当前网卡名字 vim ifcfg-ens33 TYPE="Ethernet" # ...
- 题解报告:hdu 2072 单词数
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2072 题目: Problem Description lily的好朋友xiaoou333最近很空,他想 ...
- 题解报告:hdu 1570 A C
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1570 Problem Description Are you excited when you see ...
- Linux环境下使用yum安装zip和unzip
Linux环境下使用yum安装zip和unzip. yum install zip yum install unzip
- js连续赋值,你理解了吗
看一道有意思的题,也许你会自信满满地写下答案,会是正确的吗? }; var b = a; a.x = a = {n: }; console.log('a',a); console.log('b',b) ...
- laravel5.5文件上传
/** * 上传文件 * @param Request $request * @return array */ public function upload(Re ...
- 使用nginx搭建简单文件服务器
最近再做一个博客,本想使用fastdfs标准的文件存储服务器,但考虑到资源占用问题,且使用nginx比较快速,且效果不差.于是采用ngixn搭建. nginx搭建文件服务器,本质上就是nginx的静态 ...
- visual assist x 注释配置
/******************************************************************** created: $DATE$ created: $DAY$ ...
- ESLint - 简介
ESLint是一个QA工具,用来避免低级错误和统一代码的风格. ESLint被设计为完全可配置的,主要有两种方式来配置ESLint: 在注释中配置:使用JavaScript注释直接把配置嵌入到JS文件 ...
- 掌握Spark机器学习库-07.6-线性回归实现房价预测
数据集 house.csv 数据概览 代码 package org.apache.spark.examples.examplesforml import org.apache.spark.ml.fea ...