slick97
Active Member
- Dec 2, 2021
- 724
- 1,905
Tristim - Here is a proposal for a new fertility_percent function for those choosing an easier difficulty:
For anyone curious as to why all the fertility percentages approach 0 at the age of 78... this is what I assumed Vren used as an age limit to prevent an infinite age in which pregnancies can occur. The following is the same function in which the variables are labeled in full:
Fertility Chance = Base Fertility - (Current Age - 18)*[Base Fertility / (Age Limit - 18)]
Theoretically, we can set the age limit to anything we want and generate a set of new plots based on a desired age limit.
If Tristim (or anyone for that matter) are feeling extra ambitious, they can generate a random age limit using real world data for determining what the upper and lower bounds should be. If it's some Gaussian distribution we can use the first standard deviation as the upper and lower bound since that will already be known.
I can't believe I'm using my engineering degree providing datasets on an optimal function for fertility in a porn game of all things... I hope someone actually finds this insightful lol
Code:
self.fertility_percent = 50.0 - ((self.age-18.0)*(50/60))
You don't have permission to view the spoiler content.
Log in or register now.
You don't have permission to view the spoiler content.
Log in or register now.
For anyone curious as to why all the fertility percentages approach 0 at the age of 78... this is what I assumed Vren used as an age limit to prevent an infinite age in which pregnancies can occur. The following is the same function in which the variables are labeled in full:
Fertility Chance = Base Fertility - (Current Age - 18)*[Base Fertility / (Age Limit - 18)]
Theoretically, we can set the age limit to anything we want and generate a set of new plots based on a desired age limit.
You don't have permission to view the spoiler content.
Log in or register now.
If Tristim (or anyone for that matter) are feeling extra ambitious, they can generate a random age limit using real world data for determining what the upper and lower bounds should be. If it's some Gaussian distribution we can use the first standard deviation as the upper and lower bound since that will already be known.
I can't believe I'm using my engineering degree providing datasets on an optimal function for fertility in a porn game of all things... I hope someone actually finds this insightful lol