mdonat
mdonat
You can add the slash after Initialize: `Xam.Plugin.WebView.iOS.FormsWebViewRenderer.Initialize(); Xam.Plugin.WebView.iOS.FormsWebViewRenderer.BaseUrl += "/"; // Workaround for Bug` This works with NuGet package.
I tried this, but it seems that it cannot be solved. This is the code: ```python energysystem = solph.EnergySystem(timeindex=times) bel = solph.buses.Bus(label='electricity') b_heat = solph.buses.Bus(label='heat') # create source object representing...
Missing code for `times`: ```python today = datetime.date.today() start_day = today - datetime.timedelta(days=1) times = pd.date_range(start=start_day, end=today, freq='5T') ``` I have added an additional sink: ```python energysystem.add( solph.components.Sink( label="excess_bus_heat", inputs={b_heat:...
Ok, that's right, there is no clear optimum. But if I set min=0.5 it is working. Should have even more possible solutions then... Thank you for the quick support. :-)