Open PhilouDS opened 6 months ago
The internal logic seems to be a bit more complicated as there the "final" science value has several internal multipliers.
In https://github.com/untoldwind/KontrolSystem2/releases/tag/v0.5.9.2
I added an experiment.potential_science_value()
method that should perform that calculation (without actually handing in a research report).
ok thanks. It seems to work as intended.
Good to know: experiment.potential_science_value()
takes into account the difficulty setting for science rewards... which is not the case for completedresearchreport.science_value
.
(and sorry for that but I still have problem with VSC: )
This issue is stale because it has been open for 60 days with no activity.
This issue is stale because it has been open for 60 days with no activity.
Hi,
The type
CompletedResearchReport
fromksp::science
has the fieldsdata_value
andsample_value
as for the typeExperiment
. ButCompletedResearchReport
also has the filedscience_value
. Is it possible to get this field forExperiment
please?Until now, I used
experiment_id
andresearch_location_id
to know if an experiment has already be completed but I've noticed this is unsufficient: if I've received only data but not samples from an experiment, this experiment still appears as a completed report. So, I want to compare the total science value of the completed report with the total science value in my experiment to know if I have to run the experiment.Unless, you know an other mean to do that.