Power Your Home & Business with Reliable Solar Energy
Switch to clean, affordable and reliable solar energy with Aquarian Solar. We provide end-to-end solar solutions for homes and businesses, from system design and installation to subsidy assistance, net metering and after-sales support.
Explore reliable solar solutions designed for homes, businesses and communities. From rooftop solar systems to EV charging and solar lighting, Aquarian Solar provides solutions that support a cleaner and more energy-efficient future.
Solar Power Plant
Solar Power Plant
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt .
EV Charging Solutions
EV Charging Solutions
Prepare your home, workplace or commercial property for the transition to electric mobility with reliable EV charging solutions. We help you choose and install charging infrastructure based on your requirements
Water Heater Solutions
Water Heater Solutions
Use solar energy to heat water efficiently and reduce dependence on conventional heating systems. Our solar water heater solutions are suitable for homes and other properties looking for a practical renewable-energy solution.
Solar Street Lights
Solar Street Lighting
Illuminate roads, campuses, residential communities and outdoor spaces using solar-powered lighting systems. Solar street lights can provide dependable illumination while reducing reliance on conventional electricity.
Powered by Trusted Solar Technology
We work with established solar technology and equipment partners to provide dependable components for solar installations. Every project is designed around performance, reliability and long-term value.
Going solar is a long-term investment. The right system, quality equipment and professional installation can make a significant difference to your solar experience. At Aquarian Solar, we focus on delivering solutions that are designed for your actual energy requirements.
Quality Solar Equipment
We use reliable solar panels, inverters and system components from established manufacturers to support consistent performance.
Professional Installation
Our installation process focuses on proper system design, mounting, wiring, safety and commissioning for dependable solar generation.
Subsidy & Documentation Assistance
We help eligible residential customers navigate applicable government solar subsidy processes and documentation.
Net Metering Support
From documentation to coordination, we help customers navigate the net-metering process where applicable.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
<!--
Aquarian Solar - Solar Savings Calculator data
Edit the numbers below to change what the calculator on the Home page and
Solar Plant page shows. Do not remove or rename any tags - only change the
numbers inside them. Money values are in Indian Rupees (no commas/symbols).
Each is one "Average Monthly Electricity Bill" bracket. billRange is
the label shown in the dropdown (e.g. "1000-2000" displays as "₹1000-2000").
-->
3
450
200
85800
0
200000
210000
2475
50
1537551
1450000
4
550
260
85800
0
250000
250000
3200
48
2317230
1550000
5
650
320
85800
0
300000
320000
4550
50
3347942
1500000
6
900
400
85800
0
350000
370000
5800
48
4131096
1500000
7
920
450
85800
0
400000
420000
6800
48
4873464
1550000
8
1050
520
85800
0
450000
470000
8000
48
5639510
1600000
9
1150
580
85800
0
500000
510000
9100
46
6218841
1650000
10
1275
650
85800
0
550000
550000
10000
45
6893934
1700000
3
450
200
0
0
180000
180000
2090
51
1537551
2433000
4
550
260
0
0
220000
220000
3150
51
2317230
2047000
5
650
320
0
0
260000
270000
4550
53
3347942
2051000
6
800
400
0
0
310000
320000
5733
51
4131096
1938000
7
950
450
0
0
360000
360000
6762
49
4873464
1852000
8
1100
520
0
0
400000
400000
7718
47
5639510
1801000
9
1250
580
0
0
440000
440000
8453
45
6218841
1712000
10
1400
650
0
0
480000
480000
9371
44
6893934
1668000
// ============================================================
// Solar calculator data now lives in ONE place: an inert XML
// block embedded in the Home page's copy of this widget (see
// the
// block above/below in that page). To change prices, subsidy,
// generation, or savings numbers, edit that XML block via the
// Home page's Elementor "Edit HTML" widget - both this page's
// calculator and the Home page's calculator will pick up the
// change automatically (this page fetches it from the Home page
// at load time; the Home page reads its own local copy).
// A master copy of that XML is also kept in the Media Library
// reference file "solar-calculator-data.xml" for easy editing.
// ============================================================
let data = {};
function parseCalculatorXML(xmlText) {
const xml = new window.DOMParser().parseFromString(xmlText, "text/xml");
if (xml.querySelector('parsererror')) {
throw new Error('solar-calculator-data XML is not well-formed');
}
const parsed = {};
xml.querySelectorAll('category').forEach(function (catEl) {
const catName = catEl.getAttribute('name');
parsed[catName] = {};
catEl.querySelectorAll('tier').forEach(function (tierEl) {
const billRange = tierEl.getAttribute('billRange');
const num = function (tag) {
const el = tierEl.querySelector(tag);
return el ? Number(el.textContent) : 0;
};
parsed[catName][billRange] = {
solar_plant: num('solarPlantKw'),
units_month: num('unitsPerMonth'),
rooftop_area: num('rooftopAreaSqft'),
central_subsidy: num('centralSubsidy'),
state_subsidy: num('stateSubsidy'),
cost: num('cost'),
approx_cost: num('approxCost'),
financial_savings_month: num('financialSavingsPerMonth'),
payback_period_months: num('paybackPeriodMonths'),
total_electric_generated: num('totalElectricityGeneratedLifetime'),
net_savings_40_years: num('netSavings40Years')
};
});
});
return parsed;
}
function loadCalculatorData() {
const localBlock = document.getElementById('solar-calculator-data');
if (localBlock) {
return Promise.resolve(parseCalculatorXML(localBlock.textContent));
}
return fetch('https://aquariansolar.com/')
.then(function (r) { return r.text(); })
.then(function (html) {
const match = html.match(/]*id=["']solar-calculator-data["'][^>]*>([sS]*?)/i);
if (!match) {
throw new Error('solar-calculator-data block not found on Home page');
}
return parseCalculatorXML(match[1]);
});
}
// Function to update dropdown options
function updateDropdownOptions(category) {
const billRangeDropdown = document.getElementById('billRange');
billRangeDropdown.innerHTML = ''; // Clear existing options
const options = Object.keys(data[category] || {});
options.forEach(option => {
const newOption = document.createElement('option');
newOption.value = option;
newOption.textContent = `₹${option}`;
billRangeDropdown.appendChild(newOption);
});
}
function initCalculator() {
// Initial dropdown update based on default category
const initialCategory = document.getElementById('category').value;
updateDropdownOptions(initialCategory);
// Update dropdown when category changes
document.getElementById('category').addEventListener('change', function () {
const selectedCategory = this.value;
updateDropdownOptions(selectedCategory);
});
document.getElementById('solarForm').addEventListener('submit', function (e) {
e.preventDefault();
// User input
const category = document.getElementById('category').value;
const billRange = document.getElementById('billRange').value;
// Get details
const details = data[category][billRange];
// Calculate consumer share (after subsidy)
const totalSubsidy = details.central_subsidy + details.state_subsidy;
const consumerShare = details.cost - totalSubsidy;
// Calculate daily and yearly generation (simple conversions)
const unitsDay = (details.units_month / 30).toFixed(2); // Per day
const unitsMonth = details.units_month; // Per month
const unitsYear = details.units_month * 12; // Per year
// Update display with absolute values
document.getElementById('solar-heading').textContent = `${details.solar_plant} kW`;
document.getElementById('roofArea').textContent = `${details.rooftop_area}Sqft`;
document.getElementById('cost').textContent = `₹${details.approx_cost.toLocaleString()}`;
document.getElementById('subsidy').textContent = `₹${totalSubsidy.toLocaleString()}`;
document.getElementById('netCost').textContent = `₹${consumerShare.toLocaleString()}`;
document.getElementById('financialSavings').textContent = `₹${details.financial_savings_month.toLocaleString()}/month`;
document.getElementById('netSavings').textContent = `₹${details.net_savings_40_years.toLocaleString()}`;
document.getElementById("per-day").innerText = unitsDay;
document.getElementById("per-month").innerText = unitsMonth;
// Show results section with animation
const resultsSection = document.getElementById('resultsSection');
resultsSection.classList.add('show');
// Scroll to results for better UX
setTimeout(() => {
resultsSection.scrollIntoView({ behavior: 'smooth', block: 'start' });
}, 300);
});
}
loadCalculatorData().then(function (parsedData) {
data = parsedData;
initCalculator();
}).catch(function (err) {
console.error('Solar calculator: failed to load calculator data', err);
});
Energizing Communities Through Innovation
What Our Customers Say
Choosing a solar installation company is a long-term decision. Here’s what our customers have to say about their experience with Aquarian Solar.
EXCELLENT
Based on 24 reviews
Posted on Google
Lalit Narayan Joshi
Trustindex verifies that the original source of the review is Google.
On time and easy service.
Posted on Google
Tarun Sharma
Trustindex verifies that the original source of the review is Google.
Behaviour is good... And when installment done the all management work is good... And i also satisfied with their work because they explain all the process step by step....there is no problem.And it's easy to install solar panel very fast.....
Posted on Google
Rohit Bahuguna
Trustindex verifies that the original source of the review is Google.
Good solar solution, services and work.
Posted on Google
Prince Rajput
Trustindex verifies that the original source of the review is Google.
“I had a great experience with Aquarian Solar Systems for my solar panel installation. From the start, their team was professional, knowledgeable, and responsive to all my questions. The installation was completed on time and the crew kept everything clean and tidy. I appreciated how clearly they explained the system and how to monitor it. Since activation, everything’s been running smoothly. Highly recommend them for anyone considering going solar!”
Posted on Google
Kamal Bora
Trustindex verifies that the original source of the review is Google.
I am happy to Aquarian solution services and after installation plant take feedback or any other problems ......and I suggest our neighbourhood .
Thanks....
Posted on Google
pankaj pandey
Trustindex verifies that the original source of the review is Google.
Wonderful experience, satisfactory service.
Posted on Google
Da 007
Trustindex verifies that the original source of the review is Google.
Best service provider in all over Uttarakhand ..... highly recommend...
Posted on Google
Neeraj Khani
Trustindex verifies that the original source of the review is Google.
Aquarians solar walon Ne mere Ghar mein solar lagaya hai . Aur mujhe achcha profit bhi hua Hai bijali mein aur logon se aquarium solar walon ke price bhi acche Lage mujhe matlab solar lagakar mujhe achcha fayda bhi hua Hai thank Aquarium solar
Posted on Google
Sanjay sharma
Trustindex verifies that the original source of the review is Google.
मैंने Aquarian solar solutions से solar पैनल लगवाया हैं जिनका काम मुझे बहुत अच्छा लगा, सर्विस बहुत अच्छी है, आपको किसी ऑफिस के चक्कर नहीं काटने, सारा काम खुद ही करते हैं इसके लिए मैं Aquarian solar solutions का धन्यवाद देता हूँ।
Posted on Google
Birendra Karki
Trustindex verifies that the original source of the review is Google.
It was a great experience they gave a great customer care
Ready to Switch to Solar?
Take the first step towards cleaner energy and lower electricity costs.
What questions we usually get about solar services
What is a solar plant and how does it work?
A solar plant uses photovoltaic (PV) panels to convert sunlight into electricity. The electricity generated can be used to power homes, businesses or other facilities, while grid-connected systems can also send excess electricity to the grid, subject to applicable regulations.
How do I choose the right solar plant capacity for my property?
The right capacity depends on your electricity consumption, available rooftop or land area, sunlight exposure and budget. Aquarian Solar can assess your electricity requirements and recommend a suitable solar plant size.
How much space is required to install a solar plant?
The space required depends on the plant capacity, type of solar panels and installation layout. A site assessment helps determine the available area and the most efficient arrangement for your solar system.
How long does a solar plant installation take?
Installation time depends on the system size, site conditions, approvals and other project requirements. After assessing your property, our team can provide an estimated installation timeline.
What maintenance does a solar plant require?
Solar plants generally require low maintenance. Regular panel cleaning, system inspections and performance monitoring can help maintain efficient power generation over the long term.
What types of EV chargers can be installed at home or commercial locations?
The suitable EV charger depends on your vehicle, charging requirements, available electrical capacity and installation location. We can help you select a compatible charging solution based on your specific needs.
How long does it take to charge an electric vehicle?
Charging time depends on the vehicle’s battery capacity, charger power rating and the vehicle’s charging capability. Higher-powered chargers can generally charge compatible EVs faster.
Can an EV charger be installed at my home?
Yes. Home EV chargers can be installed after assessing the property’s electrical connection, parking location and charger requirements. Our team can help determine the appropriate charging setup for your vehicle.
Can EV chargers be installed for offices and commercial properties?
Yes. EV charging solutions can be installed at offices, commercial buildings, hotels, residential communities, parking facilities and other suitable locations.
What should I consider before installing an EV charger?
Important factors include your vehicle’s charging specifications, charger capacity, electrical load, available parking space, installation location and future charging requirements.
How does a solar water heater work?
A solar water heater uses sunlight to heat water through solar collectors. The heated water is then stored in an insulated tank for use when required.
Can a solar water heater provide hot water during cloudy or rainy weather?
Solar water heaters can continue to provide hot water when sunlight is limited, although heating performance may be lower during extended periods of cloudy or rainy weather. A suitable backup heating arrangement may be considered depending on the requirement.
How do I choose the right solar water heater capacity?
The required capacity depends mainly on the number of people using hot water and their daily consumption. Our team can recommend a suitable capacity based on your household or property’s requirements.
How much maintenance does a solar water heater require?
Solar water heaters require periodic maintenance to keep the collectors, tank and associated components working efficiently. Regular inspection and cleaning can help maintain performance.
Can solar water heaters be installed for commercial properties?
Yes. Solar water heating systems can be used for homes as well as hotels, hostels, hospitals, restaurants and other properties with regular hot-water requirements.
How does a solar street light work?
A solar street light uses a solar panel to capture sunlight and charge a battery during the day. The stored energy powers the LED light at night, allowing the system to operate without a conventional grid connection.
Can solar street lights work during cloudy or rainy weather?
Yes. Solar street lights store energy in their batteries during daylight hours, allowing them to operate at night. Performance during extended periods of low sunlight depends on factors such as battery capacity, panel size and system design.
Where can solar street lights be installed?
Solar street lights can be installed in roads, residential communities, campuses, parking areas, parks, industrial premises, rural areas and other outdoor locations where adequate sunlight is available.
How much maintenance do solar street lights require?
Solar street lights generally require limited maintenance. Periodic cleaning of the solar panel, inspection of the battery and checking the lighting system can help ensure reliable performance.
What are the benefits of using solar street lights?
Solar street lights use renewable energy, can reduce dependence on grid electricity and can be installed in locations where extending conventional electrical infrastructure may be difficult. They also provide an energy-efficient lighting solution for outdoor areas.