a
(float, default: 0): The input value for which to calculate the natural logarithm.result
(float): The natural logarithm of the input value.a
input port. This represents the value for which you want to calculate the natural logarithm.result
output port.result
output to the desired destination node(s) in your spell.Constant
node with a value of 2 to represent the doubling factor.Constant
node to the a
input of the LN node.Divide
node and connect the LN node’s result
output to the a
input of the Divide
node.Constant
node with the exponential growth rate and connect it to the b
input of the Divide
node.Divide
node will give you the time required for the population to double, based on the exponential growth rate.-Infinity
for an input value of 0.NaN
(Not a Number) output. Make sure to validate or constrain input values to avoid this issue.