termspec for positive and negative only divn average

This commit is contained in:
Yeongdo Park 2019-08-21 00:10:17 +09:00
parent a8a111a88a
commit 1c045a630f

View file

@ -0,0 +1,20 @@
# fsd weighted (vn+sd) correlations
[u, v, w, y]
c (latex="c") = 1.0 - y
fsd (latex="\Sigma_f'") = sqrt (sqr(ddx(c)) + sqr(ddy(c)) + sqr(ddz(c)))
nx(latex="n_x") = - ddx(c) / fsd
ny(latex="n_y") = - ddy(c) / fsd
nz(latex="n_z") = - ddz(c) / fsd
divn(latex="\nabla \cdot \vec{n}") = ddx(nx) + ddy(ny) + ddz(nz)
divn_plus = $positive(divn)
divn_minus = $negative(divn)
avg { c, u, v, w, fsd, ddx_c, ddy_c, ddz_c }
avg fsd { u, v, w, nx, ny, nz, divn, divn_plus, divn_minus }