EV Charger Installation Calculator

Help your electrical contracting business capture more EV charger installation leads with this interactive calculator. Customers can select charger types, estimate installation complexity, and see potential costs including panel upgrades and permits. The calculator includes the federal tax credit calculation and helps set realistic expectations before the site visit.

Home ServicesPopular

Try the Calculator

EV Charger Installation Estimate
📍 Installation Location
Loading map...
 
📍 Enter address to check service area
🏠 Property Details
30
30
10200
⚡ Charger Selection
 
🔌 Electrical Requirements
 
✨ Additional Options

💰 Cost Breakdown
$ 800.00
+
$ 962.00
+
$ 0.00
+
$ 250.00
🔋 Your Estimate
$ 2,012.00
$ -604.00
Estimates based on average costs. Final price depends on site assessment. Federal tax credit capped at $1,000. Additional utility rebates may apply.
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
export function evChargerInstallationCalculator(form: FormTs) {
// Charger level pricing
const chargerPricing: Record<string, number> = {
'level1': 300,
'level2-basic': 500,
'level2-smart': 800,
'level2-premium': 1200
};
 
// Installation complexity multipliers
const installationMultipliers: Record<string, number> = {
'simple': 1.0,
'moderate': 1.3,
'complex': 1.6,
'extensive': 2.0
};
 
// Panel upgrade costs
const panelUpgradeCosts: Record<string, number> = {
'none': 0,
'subpanel': 1500,
'main-panel': 3000,
'service-upgrade': 5000
};
 
form.addRow(row => {
row.addTextPanel('header', {
computedValue: () => 'EV Charger Installation Estimate',
customStyles: { 'font-size': '1.5rem', 'font-weight': '600', 'color': '#1e293b' }
});
});
 
form.addSpacer({ height: 20 });
 
// Service Location Section
const locationSection = form.addSubform('serviceLocation', { title: '📍 Installation Location' });
 
locationSection.addRow(row => {
row.addAddress('propertyAddress', {
label: 'Property Address',
placeholder: 'Enter your property address...',
showMap: true,
showDistance: true,
referenceAddress: {
formattedAddress: 'Service Center, Denver, CO',
coordinates: { lat: 39.7392, lng: -104.9903 }
},
restrictToCountries: ['US', 'CA'],
distanceUnit: 'miles',
isRequired: true
});
});
 
locationSection.addRow(row => {
row.addTextPanel('serviceAreaInfo', {
computedValue: () => {
const addressField = locationSection.address('propertyAddress');
const miles = addressField?.distance();
if (miles == null) return '📍 Enter address to check service area';
if (miles <= 25) return '📍 Within service area - No travel fee';
if (miles <= 50) return '📍 Extended area - $75 travel fee';
if (miles <= 75) return '📍 Remote area - $150 travel fee';
return '📍 Outside service area - Please call for availability';
},
customStyles: { 'font-size': '0.9rem', 'color': '#0369a1', 'background': '#e0f2fe', 'padding': '10px', 'border-radius': '6px' }
});
});
 
// Property Details Section
const propertySection = form.addSubform('propertyDetails', { title: '🏠 Property Details' });
 
propertySection.addRow(row => {
row.addDropdown('homeType', {
label: 'Home Type',
options: [
{ id: 'single-family', name: 'Single Family Home' },
{ id: 'townhouse', name: 'Townhouse' },
{ id: 'condo', name: 'Condo/Apartment' },
{ id: 'multi-family', name: 'Multi-Family' }
],
defaultValue: 'single-family',
isRequired: true
}, '1fr');
row.addDropdown('garageType', {
label: 'Parking Location',
options: [
{ id: 'attached-garage', name: 'Attached Garage' },
{ id: 'detached-garage', name: 'Detached Garage' },
{ id: 'carport', name: 'Carport' },
{ id: 'driveway', name: 'Driveway/Outdoor' }
],
defaultValue: 'attached-garage',
isRequired: true
}, '1fr');
});
 
propertySection.addRow(row => {
row.addSlider('distanceToPanel', {
label: 'Distance from Panel to Charger (feet)',
min: 10,
max: 200,
step: 10,
defaultValue: 30,
showValue: true
});
});
 
// Charger Selection Section
const chargerSection = form.addSubform('chargerConfig', { title: '⚡ Charger Selection' });
 
chargerSection.addRow(row => {
row.addRadioButton('chargerLevel', {
label: 'Charger Type',
options: [
{ id: 'level1', name: 'Level 1 (120V) - 3-5 miles/hour' },
{ id: 'level2-basic', name: 'Level 2 Basic (240V) - 12-25 miles/hour' },
{ id: 'level2-smart', name: 'Level 2 Smart (240V + WiFi) - 12-25 miles/hour' },
{ id: 'level2-premium', name: 'Level 2 Premium (240V + Smart Features) - 25-30 miles/hour' }
],
defaultValue: 'level2-smart',
orientation: 'vertical',
isRequired: true
});
});
 
chargerSection.addRow(row => {
row.addDropdown('amperage', {
label: 'Amperage',
options: [
{ id: '16', name: '16 Amp' },
{ id: '32', name: '32 Amp' },
{ id: '40', name: '40 Amp' },
{ id: '48', name: '48 Amp (Fastest)' }
],
defaultValue: '40',
isRequired: true,
isVisible: () => {
const level = chargerSection.radioButton('chargerLevel')?.value();
return level !== 'level1';
}
}, '1fr');
row.addDropdown('cordLength', {
label: 'Cord Length',
options: [
{ id: '18', name: '18 feet' },
{ id: '24', name: '24 feet (+$50)' },
{ id: '25', name: '25 feet (+$75)' }
],
defaultValue: '18',
isRequired: true,
isVisible: () => {
const level = chargerSection.radioButton('chargerLevel')?.value();
return level !== 'level1';
}
}, '1fr');
});
 
// Electrical Section
const electricalSection = form.addSubform('electrical', { title: '🔌 Electrical Requirements' });
 
electricalSection.addRow(row => {
row.addRadioButton('panelUpgrade', {
label: 'Panel Upgrade Needed',
options: [
{ id: 'none', name: 'No Upgrade Needed' },
{ id: 'subpanel', name: 'Add Subpanel (+$1,500)' },
{ id: 'main-panel', name: 'Upgrade Main Panel (+$3,000)' },
{ id: 'service-upgrade', name: 'Service Upgrade to 200A (+$5,000)' }
],
defaultValue: 'none',
orientation: 'vertical',
isRequired: true
});
});
 
electricalSection.addRow(row => {
row.addDropdown('installComplexity', {
label: 'Installation Complexity',
options: [
{ id: 'simple', name: 'Simple - Panel nearby, easy access' },
{ id: 'moderate', name: 'Moderate - Some obstacles, longer run' },
{ id: 'complex', name: 'Complex - Through walls, difficult access' },
{ id: 'extensive', name: 'Extensive - Trenching or major work needed' }
],
defaultValue: 'moderate',
isRequired: true
});
});
 
// Additional Options Section
const addonsSection = form.addSubform('addons', { title: '✨ Additional Options' });
 
addonsSection.addRow(row => {
row.addCheckbox('permit', {
label: 'Permit & Inspection (+$150)',
defaultValue: true
}, '1fr');
row.addCheckbox('loadManagement', {
label: 'Load Management Device (+$300)',
defaultValue: false
}, '1fr');
});
 
addonsSection.addRow(row => {
row.addCheckbox('weatherproof', {
label: 'Weatherproof Outdoor Enclosure (+$200)',
defaultValue: false,
isVisible: () => {
const garage = propertySection.dropdown('garageType')?.value();
return garage === 'carport' || garage === 'driveway';
}
}, '1fr');
row.addCheckbox('dedicatedCircuit', {
label: 'GFCI Protection (+$100)',
defaultValue: true
}, '1fr');
});
 
form.addSpacer({ height: 20, showLine: true, lineStyle: 'dashed' });
 
// Helper to calculate travel fee
const getTravelFee = () => {
const addressField = locationSection.address('propertyAddress');
const miles = addressField?.distance();
if (miles == null || miles <= 25) return 0;
if (miles <= 50) return 75;
if (miles <= 75) return 150;
return 200;
};
 
// Price Summary Section
const summarySection = form.addSubform('summary', { title: '💰 Cost Breakdown', isCollapsible: false });
 
summarySection.addRow(row => {
row.addPriceDisplay('chargerCost', {
label: 'EV Charger Equipment',
computedValue: () => {
const chargerLevel = chargerSection.radioButton('chargerLevel')?.value() || 'level2-smart';
let cost = chargerPricing[chargerLevel] || 800;
 
const cordLength = chargerSection.dropdown('cordLength')?.value();
if (cordLength === '24') cost += 50;
if (cordLength === '25') cost += 75;
 
return cost;
},
variant: 'default'
}, '1fr');
row.addPriceDisplay('installationCost', {
label: 'Installation Labor',
computedValue: () => {
const complexity = electricalSection.dropdown('installComplexity')?.value() || 'moderate';
const distance = propertySection.slider('distanceToPanel')?.value() || 30;
const multiplier = installationMultipliers[complexity] || 1.3;
 
const baseCost = 500;
const distanceCost = distance * 8;
 
return Math.round((baseCost + distanceCost) * multiplier);
},
variant: 'default',
prefix: '+'
}, '1fr');
});
 
summarySection.addRow(row => {
row.addPriceDisplay('panelCost', {
label: 'Electrical Panel Work',
computedValue: () => {
const panel = electricalSection.radioButton('panelUpgrade')?.value() || 'none';
return panelUpgradeCosts[panel] || 0;
},
variant: 'default',
prefix: '+'
}, '1fr');
row.addPriceDisplay('addonsCost', {
label: 'Additional Options',
computedValue: () => {
let total = 0;
if (addonsSection.checkbox('permit')?.value()) total += 150;
if (addonsSection.checkbox('loadManagement')?.value()) total += 300;
if (addonsSection.checkbox('weatherproof')?.value()) total += 200;
if (addonsSection.checkbox('dedicatedCircuit')?.value()) total += 100;
return total;
},
variant: 'default',
prefix: '+'
}, '1fr');
});
 
summarySection.addRow(row => {
row.addPriceDisplay('travelFee', {
label: 'Travel Fee',
computedValue: () => getTravelFee(),
variant: 'default',
prefix: '+',
isVisible: () => getTravelFee() > 0
});
});
 
const finalSection = form.addSubform('final', {
title: '🔋 Your Estimate',
isCollapsible: false,
sticky: 'bottom'
});
 
finalSection.addRow(row => {
row.addPriceDisplay('totalCost', {
label: 'Total Estimated Cost',
computedValue: () => {
const chargerLevel = chargerSection.radioButton('chargerLevel')?.value() || 'level2-smart';
let chargerCost = chargerPricing[chargerLevel] || 800;
 
const cordLength = chargerSection.dropdown('cordLength')?.value();
if (cordLength === '24') chargerCost += 50;
if (cordLength === '25') chargerCost += 75;
 
const complexity = electricalSection.dropdown('installComplexity')?.value() || 'moderate';
const distance = propertySection.slider('distanceToPanel')?.value() || 30;
const multiplier = installationMultipliers[complexity] || 1.3;
const installCost = Math.round((500 + distance * 8) * multiplier);
 
const panel = electricalSection.radioButton('panelUpgrade')?.value() || 'none';
const panelCost = panelUpgradeCosts[panel] || 0;
 
let addonsCost = 0;
if (addonsSection.checkbox('permit')?.value()) addonsCost += 150;
if (addonsSection.checkbox('loadManagement')?.value()) addonsCost += 300;
if (addonsSection.checkbox('weatherproof')?.value()) addonsCost += 200;
if (addonsSection.checkbox('dedicatedCircuit')?.value()) addonsCost += 100;
 
const travelFee = getTravelFee();
 
return chargerCost + installCost + panelCost + addonsCost + travelFee;
},
variant: 'large'
}, '1fr');
row.addPriceDisplay('taxCredit', {
label: 'Federal Tax Credit (30%)',
computedValue: () => {
const chargerLevel = chargerSection.radioButton('chargerLevel')?.value() || 'level2-smart';
let chargerCost = chargerPricing[chargerLevel] || 800;
 
const cordLength = chargerSection.dropdown('cordLength')?.value();
if (cordLength === '24') chargerCost += 50;
if (cordLength === '25') chargerCost += 75;
 
const complexity = electricalSection.dropdown('installComplexity')?.value() || 'moderate';
const distance = propertySection.slider('distanceToPanel')?.value() || 30;
const multiplier = installationMultipliers[complexity] || 1.3;
const installCost = Math.round((500 + distance * 8) * multiplier);
 
const panel = electricalSection.radioButton('panelUpgrade')?.value() || 'none';
const panelCost = panelUpgradeCosts[panel] || 0;
 
let addonsCost = 0;
if (addonsSection.checkbox('permit')?.value()) addonsCost += 150;
if (addonsSection.checkbox('loadManagement')?.value()) addonsCost += 300;
if (addonsSection.checkbox('weatherproof')?.value()) addonsCost += 200;
if (addonsSection.checkbox('dedicatedCircuit')?.value()) addonsCost += 100;
 
const travelFee = getTravelFee();
const total = chargerCost + installCost + panelCost + addonsCost + travelFee;
return -Math.min(Math.round(total * 0.30), 1000);
},
variant: 'success',
prefix: ''
}, '1fr');
});
 
finalSection.addRow(row => {
row.addTextPanel('disclaimer', {
computedValue: () => 'Estimates based on average costs. Final price depends on site assessment. Federal tax credit capped at $1,000. Additional utility rebates may apply.',
customStyles: { 'font-size': '0.85rem', 'color': '#64748b', 'font-style': 'italic' }
});
});
 
form.configureSubmitButton({
label: 'Get Free Quote'
});
}
 

Frequently Asked Questions

Can I customize the charger brands and models?

Yes. You can replace the generic charger options with specific brands you install, along with their actual pricing and features.

Does it include federal and state incentives?

The template includes the federal 30% tax credit (up to $1,000). You can add state-specific rebates or utility incentives for your area.

Can I adjust labor rates for my market?

Yes. All labor rates, complexity multipliers, and per-foot wiring costs are fully customizable to match your local pricing.

How do I handle panel upgrade assessments?

The calculator provides estimates for common scenarios. You can add a note that final panel requirements are determined during the site assessment.

Can I collect customer information for follow-up?

Yes. The submit button captures contact details so you can schedule site assessments with qualified leads. Connect to your CRM via webhooks.