Apparaat – CWX-25S – Elektrische kogelkraan
Hardware
Informatie
Handige en simpele kogelkraan voor in een lucht/water leiding, werkt op verschillende voltages en er zijn verschillende uitvoeringen in omloop
Informatie (ENG)
Description:
* Size: DN8-25 (1/4, 1/2, 3/4, and 1 inch)
* Material: Stainless, Brass,
* Voltage: DC3-6V, DC12V, DC24V, AC/DC 9-24V, DC5V, AC85-265V, DC3-6V
* Rated Current: 45-100 Ma, Power: Max 4W
* Output Torque: 1.5-2Nm,Opening/closing time:3-5 seconds.
* Wiring:2~5 wires,
* IP65 or IP67 Enclosure
* Working pressure:1.0Mpa( 150 Psi)
* Medium temperature: 0-90 Centigrade
Specificaties:
1. POM materiaal versnellingsbak
2. Handbediening, de klep kan worden bediend bij stroomuitval
3. Min dimensie en positie indicator
4. goede afdichting, IP65 behuizing
Typical application:
1.Air-warm valve.HVAC and fire-flight sprinkler service,Fan coil and,hot water cycle system
2.Environmental Protection and drain water system,Water treatment project .
3.IC card meters,heat energy meters and reuse of rainwater and reuse of grey water system
4.Irrigation equipment,drinking water equipment,solar water heaters,washing machines,water heaters,industrial humidifier.
5.Small equipment for automatic control,agricultural water conservation and water-saving irrigation system
6.Solar thermal,under-floor,rain water,irrigation,plumbing service,hot water heating and solar glycol loop,ideal for off-grid system.
7.Water,Irrigation system,cooling/heating system,Low voltage plumbing system
8.Water equipment,auto-control water system,industrial mini-auto equipment, Small equipment for automatic control
Pinout
Uitvoeringen:
– CR01: two wires and reverse polarity
– CR02: three wires two point control
– CR03: three wires one control
– CR04: two wires and fail-save/power-off return
– CR05: five wires micro controller with signal feedback
Arduino
Hieronder hebben wij een CR05 model (met stand feedback) aangesloten op een arduino en relais:
Sluit de module aan volgens onderstaand overzicht:
Script
Hier is een eenvoudig script welke met seriele commando’s O (open) en D (Dicht) de klep kan bedienen aan de hand van terugkoppeling van de klep:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
// Elektrische Kogelklep CWX-25S Arduino script // Door S. Ebeltjes (DomoticX) // Hardware Pins #define RELAIS 6 #define KLEP_OLS 8 // Groen, Open #define KLEP_CLS 9 // Rood, Close char commando; int OLS; int CLS; void setup() { pinMode(RELAIS, OUTPUT); pinMode(KLEP_OLS, INPUT_PULLUP); pinMode(KLEP_CLS, INPUT_PULLUP); Serial.begin(9600); } void loop() { if(Serial.available() > 0) { commando = Serial.read(); switch(commando) { case 'O': Serial.println("Klep naar open..."); KLEP_OPEN(); break; case 'D': Serial.println("Klep naar dicht..."); KLEP_DICHT(); break; } } delay(10); } void KLEP_OPEN() { OLS = digitalRead(KLEP_OLS); if (OLS == 1) { // Kijk of de klep al open is. // Stel klep in. digitalWrite(RELAIS, LOW); // Relais aan do { OLS = digitalRead(KLEP_OLS); delay(25); } while (OLS == 1); // Ga net zo lang door totdat OLS 0 wordt (klep open). digitalWrite(RELAIS, HIGH); // Relais uit } Serial.println("Klep is open!"); } void KLEP_DICHT() { CLS = digitalRead(KLEP_CLS); if (CLS == 1) { // Kijk of de klep al dicht is. // Stel klep in digitalWrite(RELAIS, LOW); // Relais aan do { CLS = digitalRead(KLEP_CLS); delay(20); } while (CLS == 1); // Ga net zo lang door totdat CLS 0 wordt (klep dicht). digitalWrite(RELAIS, HIGH); // Relais uit } Serial.println("Klep is dicht!"); } |
Maten
Messing | Verbinding | Maten | D | L | H |
Zowel binnendraad-poort | DN8 | 8 | 46 | 31 | |
DN15 | 15 | 57 | 38 | ||
DN20 | 20 | 71 | 45 | ||
DN25 | 23.5 | 72 | 49 | ||
Zowel binnendraad Verminderen-poort | DN10 | 8 | 46 | 31 | |
DN20 | 15 | 66 | 38 | ||
DN25 | 20 | 72 | 47 | ||
DN32 | 25 | 86 | 60 | ||
Vertica
Drie-Weg |
DN15 | 12 | 63 | 49 | |
DN20 | 15 | 66 | 53 | ||
Vrouwelijke-buitendraad | DN15 | 15 | 63 | 38 | |
DN20 | 15 | 66 | 38 | ||
Zowel buitendraad | DN15 | 15 | 68 | 38 | |
SS304/316 | Zowel vrouwelijke draad | DN8 | 8 | 46 | 31 |
DN10 | 8 | 46 | 30.5 | ||
DN15 | 15 | 55 | 38 | ||
DN20 | 15 | 63 | 39 | ||
DN20 | 20 | 71 | 45 | ||
DN25 | 20 | 75 | 47 | ||
DN25 | 25 | 72 | 49 |
Schema
ZIE TAB PINOUT
Teardown
Binnenkant behuizing
Je ziet na het loshalen van de behuizing (CR05 type) aan de bovenkant de schakelaars zitten welke de stand doorgeven:
Binnenkant klep
Datasheet
GEEN GEGEVENS
Fritzing
GEEN GEGEVENS
Downloads
GEEN GEGEVENS