Daisy Sol Val XL
Original price was: $2,850.00.$2,650.00Current price is: $2,650.00.
The larger version of the Daisy Sol Val, this module boasts a bigger PEEK manifold and chemically inert solenoid valves optimized for faster flow rates (up to 400 ml/min). Ideal for customizing generalized flow and dispensing applications. Can be used either in 4×2 or 8×1 configuration.
4 in stock (can be backordered)
Free shipping on orders over $2500!
- Satisfaction Guaranteed
- No Hassle Refunds
- Secure Payments
- Pre-order items ship in 8 weeks
- More Information
- Technical Specifications
- Chemical Compatibility
- Customizations
- Accessories
- Maintenance
- Command Set
Daisy Sol Val XL is the larger sibling of Daisy Sol Val — it features a bigger manifold with larger solenoid valves to accommodate faster flow rates. Specifically, this instrument uses 8 LFV series, isolation style, 2-way normally closed solenoid valves from Lee Company (Connecticut, USA). The LFV valves contain a diaphragm seal made out of a chemically inert elastomer (EPDM) that isolates and protects the valve’s inner parts from the fluid. Each valve is 100% functionally tested by the factory to ensure optimal and reliable switching performance. In fact, these valves are regularly used in medical, biotechnology and scientific measurement and research instrumentation, owing to their reliability and consistent performance.
The LFV series solenoid valves feature zero dead volume and only 21 μl of internal volume that is readily and easily flushable without any retention. They can operate at pressures from vacuum to 30 psig. The maximum flow rate through these valves before they can no longer fully close (above 30 psi differential pressure) is 415 ml/min. Therefore, the Daisy Sol Val is recommended for applications with flow speeds typically under 400 ml/min.
The valves can switch in as little as 30 ms, but increasing pressures within the valve body may impact its dynamics. Daisy Sol Val is designed for moderate-speed (e.g., a few Hz) switching. We will be offering separate modules for specialized high-speed applications (such as nanoliter dispensing) in the very near future.
The valve heads, as well as the flow manifold itself, are precision manufactured out of PEEK, which is highly chemically compatible with a wide variety of aqueous and organic solutions. Check out the Chemical Compatibility section for more information on both wetted materials (PEEK and EPDM).
The manifold is designed to house 4 channels along a common port line on either half of the manifold. The common channels can be bridged to yield an 8×1 configuration, or kept separate to yield two 4×1 configurations. Whenever a given valve opens up, it is connected to the common channel, allowing fluid to flow between the side port and the common port(s). In one typical application, the user would select from a multitude of input samples, and direct that stream through the common port into a target vessel or flow channel via a pump downstream. The reverse is also possible, with the target stream being directed to different output locations via an upstream pump. It is possible to chain multiple Daisy Sol Val modules to create any custom flow network needed.
Plug all unused ports with our specialized port plugs.
For applications that require a different topology — such as 2-way or 3-way isolated ports without a common channel, we can offer alternative and custom manifold configurations with the Daisy Sol Val. Simply reach out to us with your custom request before your order.
Weight | 0.83 kg |
---|---|
Dimensions | 100 × 100 × 115 mm |
Valve Volume | Dead Volume: 0 ul |
Expected Life Cycle | DI Water: 10 M cycles (minimum). |
Operating Pressures | Vac – 30 psi |
Over Pressure Range | 30 psi differential |
Wetted Materials | Valve Head: PEEK |
Port Configuration | 1/4-28 Standard Fitting |
Manifold Configuration | 2 x 4×1 (4 Branches on 1 Common line; two each) |
Unit Power Input | 24 VDC, 4 A |
Power Adapter Input | 110-240 VAC, 50/60 Hz |
Adapter Safety Certifications | FCC, CE, UL |
Color | Housing: Anodized black |
Operating Conditions | Temperature: -1-49 degrees C (30-120 F) |
Storage Conditions | Temperature: -40-80 degrees C (-40-175 F) |
Chemical Compatibility
Polyether ether ketone (PEEK) Chemical Compatibility Reference Table (adopted from www.calpaclab.com)
Ethylene Propylene (EPDM) Chemical Compatibility Reference Table (from www.ipexna.com)
Customizations
If you need a different valve manifold configuration for your specialized application, please contact us with your request.
Maintenance
We recommend cleaning the Daisy Sol Val XL by flushing it with plenty of DI water after each use. The goal is to wash away any residual solutions containing salt, as salt crystals remaining behind after aqueous buffers dry out will otherwise wear out the internal moving parts over time.
If organic materials were used with the Daisy Sol Val XL, flushing it with ethanol first (followed by DI water) is a good idea.
After cleaning flushes, either DI water or air may be left inside the manifold for short term storage.
Command Set
Note: Daisy Sol Val and Sol Val XL instruments use the same command set. You can use these instruments interchangeably. Sol Val XL is appropriate for higher flow rate applications, as described in the More Information tab.
Always start your automation scripts by setting up the interface to the Daisy instruments. Assuming your Daisy Sol Val XL (solenoid valve manifold) is the first instrument in the first group:
sol_val_xl = self.my_interface.groups[0].inst[0]
The activation command format is:
sol_val_xl.turn_on_valves(<{set of valve numbers}>)
The set of valves includes numbers from 1 through 8 for Daisy Sol Val. Hence, turning on valves 3, 5 and 8 is accomplished through:
sol_val_xl.turn_on_valves({3, 5, 8})
When a different set of valves is specified, any valve that was previously on turns off if it is not included in the new set. For instance,
sol_val_xl.turn_on_valves({2, 5, 7})
turns off valves 3 and 8, turns on 2 and 7, and keeps 5 on.
All valves are turned off with the following command:
sol_val_xl.turn_off_valves()
Application Example: Automatic Reagent Mixing
The script segment below uses two Daisy Sol Vals (solenoid valve manifolds) and a Daisy Piston Pump to set up a reagent mixing station. The piston pump is placed between the Sol Vals, which select the source reagents and destination vials, respectively.
g1 = self.my_interface.groups[0] sol_val_xl_1 = g1.inst[0] # first instrument in the chain is the Daisy # Sol Val XL (upstream, selecting inputs) piston_pump = g1.inst[1] # second instrument in the chain is # Daisy Pump sol_val_xl_2 = g1.inst[2] # third instrument in the chain is another # Daisy Sol Val XL (selecting outputs) # Start by homing the piston pump piston_pump.home() # waits automatically to finish. piston_volume = 5000 # ul. Using the 5 ml piston pump # we will have 4 reagents at the ports of sol_val_xl_1. These # will be mixed at certain ratios into for each vial placed at the # ports of sol_val_xl_2. Below is the mixing volumes for the 4 reagents mixing_volumes = [300, 500, 100, 600] # ul each; e.g., 300 ul of # reagent 1, 500 ul of reagent # 2, etc. priming_volume = 300 # ul output_vials = 6 for ii in range(4): # we have 4 input reagent vials sol_val_xl_1.turn_on_valves({ii + 1}) # First, aspirate required amount into pump piston_pump.run(60000, mixing_volumes[ii]*output_vials + priming_volume, 0, wait=True) sol_val_xl_2.turn_on_valves({8}) # 8th output port is to waste # dispense priming_volume into waste to prime the flow line piston_pump.run(60000, priming_volume, 1, wait=True) for jj in range(output_vials): # we have 6 vials to fill at the output sol_val_xl_2.turn_on_valves(jj}) piston_pump.run(60000, mixing_volumes[ii], 1, wait=True) # dispense target volumes into various vials # after dispensing this reagent to all output vials, continue with # priming and dispensing of the next reagent