R/t_vol.R

Defines functions t_vol

Documented in t_vol

t_vol <-
function(vol, m)
 {
 d0   = 0.01
 dmax = 130
 V0 <- pi*(d0^3)/6
 Vmax <- pi*(dmax^3)/6# = 1150347
 s     <- 31*m
 ttt <- (-1/m)*log( 1 - (m/s)*log(vol/V0) ) / 365# time to reach volume vol in years
 return(ttt)
 }

Try the MILC package in your browser

Any scripts or data that you put into this service are public.

MILC documentation built on May 2, 2019, 3:45 a.m.