Michael Folkerts
Michael Folkerts
Same issue, setting proxy via: `$env:chocolateyProxyLocation = 'https://local/prox y/server'` didn't work. Proxy is already set at system level. Could it be corporate "endpoint protection"?
@lostmsu I'm not sure what you mean. Yes, I have had previous versions of PythonNet work with the C# library I'm using. However, the library has also been updated...
Ah, so must be library I'm using is loading things "reflection only" ... I don't get stack trace with library I'm using. App crashes and I get that error message....
I can confirm this is not a regression. Something changed in the C# library I'm accessing I believe. Bump support for reflection only!
Have you tried checking the Volume of the structure resulting from the Boolean AND?
In Eclipse 16.x, the Beam object has two properties: * **Beam.IsGantryExtended** Checks if the gantry rotation is extended. For arc beams, checks if the gantry rotation is extended at the...
I'm not too familiar with that code... but short answer is `upperLimitTol` should probably be > 1.0 since it gets *multiplied* by `volConstraint` value to set the max (failure) volume...
Also, notice there are some defaults set in the [`VolumeAtDose` constructor](https://github.com/VarianAPIs/Varian-Code-Samples/blob/d258640c688fff8cbda862861f24e32f7f5513fb/Eclipse%20Scripting%20API/projects/PlanQualityMetrics/PQMs.cs#L129) which dictate the type of limit (upper or lower): ```csharp public VolumeAtDose(string name_, DoseValue doseValue, double volConstraint, double upperLimitTol,...
For your lower limits, you need to explicitly pass PQMUtilities.LimitType.lower to VolumeAtDose(...), I think this is why your >60Gy test fails. In this case (lower bound) it's okay to have...