Describe the bug
#1139 tried to rename an argument to amuse.ext.protodisk.ProtoPlanetaryDisk.__init__, but the logic is wrong and now examples/textbook/solar_cluster_in_semilive_galaxy.py is broken.
It calls ProtoPlanetaryDisk with Rmin set to a value that isn't 1, which causes a ValueError to be raised because Rmin isn't the same as the default value of radius_min.
The intent of #1139 was to make it so that you could set either Rmin or radius_min or both if they were consistent, but that's not what the code currently does.
Describe the bug
#1139 tried to rename an argument to
amuse.ext.protodisk.ProtoPlanetaryDisk.__init__, but the logic is wrong and nowexamples/textbook/solar_cluster_in_semilive_galaxy.pyis broken.It calls
ProtoPlanetaryDiskwithRminset to a value that isn't1, which causes aValueErrorto be raised becauseRminisn't the same as the default value ofradius_min.The intent of #1139 was to make it so that you could set either
Rminorradius_minor both if they were consistent, but that's not what the code currently does.