You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 7, 2025. It is now read-only.
Review paper on modified weber number and/or ask Shihan the significance of a wind speed of 3.7 m/s to better understand this piece of ModuleOil_0D.F90 [4078]:
if (wind .GT. 3.7) then
WCC=F_WCC(wind)
!--------------------------
do i = 1,ClassesNbr
! Calculate mean droplet diameter for each oil droplet interval
DropletDiameterList_(i) = MinDropletDiameter + DeltaDiameter * (i-1) + 0.5 * DeltaDiameter
call GetP_Star(CharacteristicDiameter,FilmThickness,DropletDiameterList_(i),P_Star)
if (i==1) then
Qd(i) = MassOil * WCC / (1.62*wind*3.14/9.8)
else
Qd(i) = (MassOil * WCC / (1.62*wind*3.14/9.8) ) - Qd(i-1)
end if
end do
call GetP_Star(CharacteristicDiameter,FilmThickness,MaxDropletDiameter,P_Star)
QdTotal = MassOil * WCC / (1.62*wind*3.14/9.8)
else
Qd=0.0
QdTotal=0.0
DropletDiameterList_(1:ClassesNbr)=0.0
end if
Review paper on modified weber number and/or ask Shihan the significance of a wind speed of 3.7 m/s to better understand this piece of ModuleOil_0D.F90 [4078]: