-
-
Notifications
You must be signed in to change notification settings - Fork 116
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Manually Controlling Solar Circuit #107
Comments
Hi @MichaelDvP thank you. Do you know how the tank temperature can be increased? When reading all values from the HTTP-Api, I can only find one value at 60°: /dhwCircuits/dhw1/singleChargeSetpoint. I can even increase it but solar will still stop when reaching 60°
That's exactly what I have done already and works perfectly. Just the issue that the solar pump will be off when the water tank reaches 60° (or even will be barely on if it reaches 55° and the solar panel is 65°, Experimenting shows that in this case 100% enable the solar pump (done with physically detaching the sensor) will lead to maximized effectivity when the valve is switched to the pool), so switching the valve will not enable the solar pump. In this case I could override the tank temperature to the temperature of the pool. Do you know how to do that? |
I'm not familiar with the Bosch-API and can not comment it. |
|
Probably not the best solution but if you want to override the solar pump, you could just add a relay on the pump in parallel with the MS100 so you can turn it on via your home automation independent of what the MS100 is doing. |
you have wrong settings after the tank you should have a 3-way valve that reduce temperature to some normal temperature ( 38 degree in my solar instalation) remember that is a differentil temperature, not the real values |
@bbqkees good idea, though I would need to figure out how to do that, as it's not just power on and off (modulation) ? |
Hi there,
At my home I have a bosch/junkers device equipped with a solar pump (SM200 I suppose).
I do have a switch built in to the solar return pipes to a heat exchanger directly connected to a pool. However the system does not know about this switch. (There is some option to buy from bosch (ms 200) which is supposed to include this switch to the control system but I don't want to buy this expensive device for something I could easily do in software myself).
The issue is that the solar pump modulation is directly based on the temperature of the water tank. If for example the water tank is 55°C and the solar panel is 60°C, the pump would be switched off (too little gain). However in such a case I would like to override the pump and switch the valve to get the temperature to my pool. Also if the water tank reaches 60°C the pump would always be off (which I also cannot figure out how to change 🤔).
When researching I found this project which seems to offer quite some control regarding solar (Example).
Right now I'm reading values (and also changing some) with the HTTP-API exposed by the bosch/junkers device itself. (Example endpoints) Also some solar http endpoints exist already which can be queried. Example:
/solarCircuits/sc1/pumpModulation
{"id":"/solarCircuits/sc1/pumpModulation","type":"floatValue","writeable":0,"recordable":0,"value":0.0,"unitOfMeasure":"%","state":[{"off":0.0}]}
/solarCircuits/sc1/dhwTankTemperature
{"id":"/solarCircuits/sc1/dhwTankTemperature","type":"floatValue","writeable":0,"recordable":0,"value":57.1,"unitOfMeasure":"C","state":[{"open":-3276.8},{"short":3276.7}]}
Unfortunately those values are not adjustable.
What I tried so far and works quite good is to physically detach the temperature sensor from the water tank, so the system thinks the temperature is falling and enables the solar pump. So it would work to (physically) emulate the temperature sensor and inject the temperature of the pool when switching the pipe valve.
I wonder if someone has an idea to override the pump modulation or dhwTankTemperature by software? Maybe even by HTTP, which I think should work as the proprietary device (ms 200) also can do it and is not physically connected to the solar device. I have no clue about EMS protocol used in this project.
Thank you
The text was updated successfully, but these errors were encountered: