Feedback on Ch5 paper based on CFD-RANS
It is encouraging that you took the initiative to write this journal manuscript, but it needs a lot of work as I am afraid that in its current form it is likely to be rejected. Besides the style that needs fixing, my main concern is the claim that the CFD gives more credibility the BEM-Park model, which is not correct according to Fig 7. This may be fixed by the following steps:
1. Numerical methods:
Eqs (1) to (6) are not numerical methods but definitions. They should appear under Section 2, where you should also add the definition of C_P for the dual rotor (you can join expressions together to reduce the number of equations, e.g. the definitions of dual rotor TSRS are all in one equation separated by commas). Instead there should be a description on the BEM-Park model with an explicit expression of the velocity deficit in Park's model under numerical method. Such description appears in your PhD thesis and you can use it as it is not a journal publication. The CFD paragraph can be broken to 2-3 paragraphs and must also include a paragraph how the dual rotor configuration is modelled.
2 Grid convergence:
You should also show convergence in C_P (coefficient of power). It can be for a certain TSR.
3 Single rotor case:
What is the C_P for TI=15%? If it is much reduced, it can explain the better velocity recovery behind the rotor. You should look for a ref where they also got reduced C_P from RANS as compared to other results when the blade is mostly in stall in order to better support the reduced C_P from RANS at theta_T=-2 degs.
4 Dual rotor case:
Fig 7 is a mess. I do not understand the short lines from RANS. Are they for dual rotor where the front rotor is at theta_T=2 degs and the rear rotor is at theta_T=-2 degs? If yes, then something is very wrong with the RANS calculation, because by Fig 6a RANS gives positive C_P for the rear rotor when TSR<6. In IJET paper the front rotor's C_P line was added to the graph of the dual rotor C_P lines in order to show the benefit of using a dual rotor configuration. You can use the same approach for Fig 7 or even better and just show the lines for a dual rotor configuration. The IJET BEM-Park results are for dual rotor with the same RPM (front and rear) which means the same TSR if normalised by the free stream velocity U_infinity or the same TSR which means the TSRs of Eq (4) and (5) for the front and rear rotors respectively.
5 Park wake model evaluation:
By Fig 9(b) it seems that TI=15% case fits pretty well the Park model with k=0.04 (unlike what is written in the text). Can't we get a new k to fit the line of TI=1% and repeat the calculation of BEM-Park model? It will also be of great interest to see the radial distribution of the velocity recovery, i.e. to integrate the velocity over the azimuthal direction. That can be incorporated into the BEM model in a future calculation
6. Journal:
I saw that you used Elsevier LaTeX format. What journal do you have in mind?
7. Authors:
I saw that you added Jiahuan as a author which is fine. However, please note that SEMS regulations require a SEMS academic to be a corresponding author (there can be more than one corresponding author) particularly when SEMS has put some funding into the project, unless there is a unique reason not to. My further specific comments are in the attached.
Feedback on Ch5 paper based on CFD-RANS的更多相关文章
- Data of Ch5 --Dual rotor
* Results *Conclusion*- little effect of rear rotor on Cp_1- Cp1 is independent of TI** TI effect on ...
- {ICIP2014}{收录论文列表}
This article come from HEREARS-L1: Learning Tuesday 10:30–12:30; Oral Session; Room: Leonard de Vinc ...
- Convert BSpline Curve to Arc Spline in OpenCASCADE
Convert BSpline Curve to Arc Spline in OpenCASCADE eryar@163.com Abstract. The paper based on OpenCA ...
- 【转】关于KDD Cup '99 数据集的警告,希望从事相关工作的伙伴注意
Features From: Terry Brugger Date: 15 Sep 2007 Subject: KDD Cup '99 dataset (Network Intrusion) cons ...
- [转载]bigtable 中文版
转载厦门大学林子雨老师的译文 原文: http://dblab.xmu.edu.cn/post/google-bigtable/ Google Bigtable (中文版) 林子雨2012-05-08 ...
- 谷歌三大核心技术(三)Google BigTable中文版
谷歌三大核心技术(三)Google BigTable中文版 Bigtable:一个分布式的结构化数据存储系统 译者:alex 摘要 Bigtable是一个分布式的结构化数据存储系统,它被设计用来处理海 ...
- Google Bigtable (中文版)
http://dblab.xmu.edu.cn/post/google-bigtable/ Abstract BigTable是一个分布式存储系统,它可以支持扩展到很大尺寸的数据:PB级别的数据,包含 ...
- 【论文笔记】Social Role-Aware Emotion Contagion in Image Social Networks
Social Role-Aware Emotion Contagion in Image Social Networks 社会角色意识情绪在形象社交网络中的传染 1.摘要: 心理学理论认为,情绪代表了 ...
- googleBigTable
Bigtable是一个分布式的结构化数据存储系统,它被设计用来处理海量数据:通常是分布在数千台普通服务器上的PB级的数据.Google的很多项目使用Bigtable存储数据,包括Web索引.Googl ...
随机推荐
- django网页渲染
模板标签种类 {% for blog in blog_list %} <h2>{{ blog.title }}</h2> <p>{{ blog.timestamp ...
- Codeforces Round #402 (Div. 2) C
Description Igor found out discounts in a shop and decided to buy n items. Discounts at the store wi ...
- One hundred layer HDU - 4374
One hundred layer HDU - 4374 $sum[i][j][k]$表示第i层第j到k列的和 $ans[i][j]$表示第i层最终停留在第j列的最大值,那么显然$ans[i][j]= ...
- 树状数组+二分||线段树 HDOJ 5493 Queue
题目传送门 题意:已知每个人的独一无二的身高以及排在他前面或者后面比他高的人数,问身高字典序最小的排法 分析:首先对身高从矮到高排序,那么可以知道每个人有多少人的身高比他高,那么取较小值(k[i], ...
- 二分查找 BestCoder Round #42 1002 Gunner II
题目传送门 /* 题意:查询x的id,每次前排的树倒下 使用lower_bound ()查找高度,f[i]记录第一棵高度为x树的位置,查询后+1(因为有序) */ #include <cstdi ...
- python中的sort和sorted
共同点 都有三个参数, cmp用户自定义(指定函数),每个元素都会调用,效率没key高 key带一个参数的函数,用来为每个元素提取比较值 reverse=True 翻转 sort sort作用的 ...
- CentOS 7.4安装mariadb,启动报错
[root@iZ25b6alxstZ ~]# systemctl start mariadb Job for mariadb.service failed because the control pr ...
- sass+compass起步
前言:Sass is an extension of CSS that adds power and elegance to the basic language. It allows you to ...
- 关于margin、padding 对内联元素的影响
内联元素和块级元素的区别是新手必须要掌握的知识点.大家可能平时注意块级元素比较多.所以这里重点让我们来讲讲常见的width height margin padding 对inline元素的影响. 测 ...
- intellij idea 调试 lua程序, 突然崩溃或者xmx不够的情况
将内存各方面的数值都改大一点.都什么时代了,默认数值还这么低... -server-Xms256m-Xmx1024m-XX:ReservedCodeCacheSize=240m-XX:+UseConc ...