1 Star 0 Fork 0

黑影 / DMCombustor

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
dDxdcal.f95 1.28 KB
一键复制 编辑 原始数据 按行查看 历史
黑影 提交于 2016-07-12 10:39 . push log
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! the subroutine is coded for modeling drag for
! properties calculation of dual mode scramjet
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! Coded by : Black Ghost
! Created Date : 2016-01-07
! Completed Date : 2016-01-13
! Revised Date :
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! the drag is the sum of :
! 1. the drag of stationary bodies immersed in the stream
! within the control-surface boundaries;
! 2. the drag of liquid droplets anf filaments traveling
! more sloely than the main gas stream, and,
! 3. the component of body or gravity forces acting on
! the material within the control surface in the
! direction opposite to that of the velocity vector.
! ref. to Ascher H. Shapiro, the dynamics and aerodynamics
! of compressible fluid flow, vol. I, pp. 224-225
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! Note :
!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
subroutine dDxdcal(i)
use VariableDef
implicit none
integer::i
real*8::p,A,Ma
real*8::dDx
! real*8::
dDx=0.0
p=PR(i-1,2)
A=PR(i-1,13)
Ma=PR(i-1,3)
! dDx/(gamma*p*A*Ma*Ma/2)
dDxd=dDx/(gamma*p*A*Ma*Ma/2)
end subroutine dDxdcal
FORTRAN
1
https://gitee.com/chfenger/DMCombustor.git
git@gitee.com:chfenger/DMCombustor.git
chfenger
DMCombustor
DMCombustor
master

搜索帮助